Package org.apache.juddi.datatype.response

Examples of org.apache.juddi.datatype.response.ServiceInfo


    handler = ( RegisteredInfoHandler)maker.lookup( RegisteredInfoHandler.TAG_NAME);
  }

  private RegistryObject getRegistryObject()
  {
    ServiceInfo sInfo = new ServiceInfo();
    sInfo.addName(new Name("regInfoServNm"));
    sInfo.addName(new Name("regInfoServNm2","en"));
    sInfo.setServiceKey("826e6443-e3c5-442b-9bf8-943071ca83f4");
    sInfo.setBusinessKey("56644a68-8779-46c7-93ce-90eeb7569f3f");

    BusinessInfo bInfo = new BusinessInfo();
    bInfo.setBusinessKey("56644a68-8779-46c7-93ce-90eeb7569f3f");
    bInfo.addName(new Name("regInfoBizNm"));
    bInfo.addName(new Name("regInfoBizNm2","en"));
View Full Code Here


            org.setDescription(createInternationalString(((Description) descriptions.get(0)).getValue()));
        }
        if (serviceInfos != null && !serviceInfos.isEmpty()) {
            List services = new ArrayList(serviceInfos.size());
            for (int i = 0; i < serviceInfos.size(); i++) {
                ServiceInfo serviceInfo = (ServiceInfo) serviceInfos.elementAt(i);
                services.add(createService(serviceInfo));
            }
            org.addServices(services);
        }
View Full Code Here

TOP

Related Classes of org.apache.juddi.datatype.response.ServiceInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.