Package org.apache.ws.scout.uddi

Examples of org.apache.ws.scout.uddi.BusinessService.addNewName()


    BusinessService bs = BusinessService.Factory.newInstance();
    try {
      InternationalString iname = ((RegistryObject) serve).getName();
           
      for (LocalizedString locName : iname.getLocalizedStrings()) {
          Name name = bs.addNewName();
          name.setStringValue(locName.getValue());
          name.setLang(locName.getLocale().getLanguage());               
      }
          
            InternationalString idesc = ((RegistryObject) serve).getDescription();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.