Package xregistry.generated

Examples of xregistry.generated.GetHostDescResponseDocument


            throws XregistryException {
        log.info("Request Received " + input.xmlText());
        String hostDescAsStr = registryImpl.getHostDesc(findUserDN(), input.getGetHostDesc()
                .getHostName());

        GetHostDescResponseDocument responseDocument = GetHostDescResponseDocument.Factory
                .newInstance();
        if (hostDescAsStr != null) {
            responseDocument.addNewGetHostDescResponse().setHostDescAsStr(hostDescAsStr);
        } else {
            responseDocument.addNewGetHostDescResponse().setNilHostDescAsStr();
        }
        log.info("Response  Sent  " + responseDocument.xmlText());
        return responseDocument;
    }
View Full Code Here

TOP

Related Classes of xregistry.generated.GetHostDescResponseDocument

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.