Package xregistry.generated

Examples of xregistry.generated.GetServiceDescResponseDocument


    public GetServiceDescResponseDocument getServiceDesc(GetServiceDescDocument input)
            throws XregistryException {
        log.info("Request Received " + input.xmlText());
        String serviceDescAsStr = registryImpl.getServiceDesc(findUserDN(), input
                .getGetServiceDesc().getServiceQname().toString());
        GetServiceDescResponseDocument responseDocument = GetServiceDescResponseDocument.Factory
                .newInstance();
        if (serviceDescAsStr != null) {
            responseDocument.addNewGetServiceDescResponse().setServiceDescAsStr(serviceDescAsStr);
        } else {
            responseDocument.addNewGetServiceDescResponse().setNilServiceDescAsStr();
        }
        log.info("Response  Sent  " + responseDocument.xmlText());
        return responseDocument;
    }
View Full Code Here

TOP

Related Classes of xregistry.generated.GetServiceDescResponseDocument

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.