Examples of GetHostDescResponseDocument


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
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.