Package org.apache.ws.scout.uddi

Examples of org.apache.ws.scout.uddi.Description


     
      InternationalString idesc = ((RegistryObject) scheme).getDescription();
     
            if (idesc != null) {
                for (LocalizedString locName : idesc.getLocalizedStrings()) {
                    Description desc = tm.addNewDescription();
                    desc.setStringValue(locName.getValue());
                    desc.setLang(locName.getLocale().getLanguage());
                }
            }
//          External Links
            Collection<ExternalLink> externalLinks = scheme.getExternalLinks();
            if(externalLinks != null && externalLinks.size() > 0)
View Full Code Here


     
      InternationalString idesc = org.getDescription();
     
      if (idesc != null) {
          for (LocalizedString locName : idesc.getLocalizedStrings()) {
              Description desc = biz.addNewDescription();
              desc.setStringValue(locName.getValue());
              desc.setLang(locName.getLocale().getLanguage());               
          }
      }
     
      if (org.getPrimaryContact() != null &&
        org.getPrimaryContact().getPersonName()!= null &&
View Full Code Here

           String url = link.getExternalURI();
           if(url != null)
               od.setOverviewURL(url);
           InternationalString extDesc = link.getDescription();
           if(extDesc != null) {
               Description description = od.addNewDescription();
               description.setStringValue(extDesc.getValue());
           }
           return od;
       }
View Full Code Here

TOP

Related Classes of org.apache.ws.scout.uddi.Description

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.