Package eu.planets_project.services.datatypes

Examples of eu.planets_project.services.datatypes.ServiceDescription$Builder


        List<ServiceDescription> services = registry
            .query(new ServiceDescription.Builder(null,
                serviceClass).build());
        Iterator<ServiceDescription> it = services.iterator();
        while (it.hasNext()) {
          ServiceDescription sd = it.next();
          serviceNames.add(new SelectItem(
              sd.getEndpoint().toString(), sd.getName()));
          serviceNameMap.put(sd.getEndpoint().toString(), sd
              .getName());
        }
      }
    }
View Full Code Here

TOP

Related Classes of eu.planets_project.services.datatypes.ServiceDescription$Builder

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.