Examples of FindServiceDescResponse


Examples of xregistry.generated.FindServiceDescResponseDocument.FindServiceDescResponse

        List<DocData> serviceList = registryImpl.findServiceDesc(findUserDN(), input
                .getFindServiceDesc().getServiceQNameSearchStr());

        FindServiceDescResponseDocument findServiceDescResponseDocument = FindServiceDescResponseDocument.Factory
                .newInstance();
        FindServiceDescResponse findServiceDescResponse = findServiceDescResponseDocument
                .addNewFindServiceDescResponse();
        if (serviceList != null) {
            for (DocData service : serviceList) {
                ServiceDescData serviceDescData = findServiceDescResponse.addNewServiceName();
                copyResourceData(service, serviceDescData);
            }
        }
        log.info("Response  Sent  " + findServiceDescResponseDocument.xmlText());
        return findServiceDescResponseDocument;
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.