Package xregistry.generated

Examples of xregistry.generated.GetAppDescResponseDocument


    public GetAppDescResponseDocument getAppDesc(GetAppDescDocument input)
            throws XregistryException {
        log.info("Request Received " + input.xmlText());
        String appDescAsStr = registryImpl.getAppDesc(findUserDN(), input.getGetAppDesc()
                .getAppQName(), input.getGetAppDesc().getHostName());
        GetAppDescResponseDocument responseDocument = GetAppDescResponseDocument.Factory
                .newInstance();
        if (appDescAsStr != null) {
            responseDocument.addNewGetAppDescResponse().setAppdescAsStr(appDescAsStr);
        } else {
            responseDocument.addNewGetAppDescResponse().setNilAppdescAsStr();
        }
        log.info("Response  Sent  " + responseDocument.xmlText());
        return responseDocument;
    }
View Full Code Here

TOP

Related Classes of xregistry.generated.GetAppDescResponseDocument

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.