Package org.apache.ws.scout.uddi

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


            org.setDescription(createInternationalString(((Description) descriptions[0]).getStringValue()));
        }
        if (serviceInfos != null && serviceInfos.length > 0) {
            List<Service> services = new ArrayList<Service>(serviceInfos.length);
            for (int i = 0; i < serviceInfos.length; i++) {
                ServiceInfo serviceInfo = (ServiceInfo) serviceInfos[i];
                services.add(createService(serviceInfo));
            }
            org.addServices(services);
        }
View Full Code Here


                ServiceInfo[] a = (serviceInfos != null ? serviceInfos.getServiceInfoArray() : null);

                LinkedHashSet<Service> col = new LinkedHashSet<Service>();

                for (int i=0; a != null && i < a.length; i++) {
                    ServiceInfo si = (ServiceInfo) a[i];
          Service srv = (Service) getRegistryObject(si.getServiceKey(), LifeCycleManager.SERVICE);
                    col.add(srv);
                }

                blkRes.setCollection(col);
            }
View Full Code Here

TOP

Related Classes of org.apache.ws.scout.uddi.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.