Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
Service[] services = serviceManager.findServices(new ServiceFilter() {
        public boolean matches(Service service) throws GovernanceException {
            String attributeVal = service.getAttribute("Owner");
            ifreturn (attributeVal != null && attributeVal.equals("Financial Department")) {
                return true;
            }
            return false;
        }
    });

...

Attaching a WSDL to a Service

...