Package xregistry.generated

Examples of xregistry.generated.AddResourceResponseDocument


    public AddResourceResponseDocument addResource(AddResourceDocument input) throws XregistryException {
        log.info("Request Received " + input.xmlText());
        AddResource resource = input.getAddResource();
        registryImpl.registerDocument(findUserDN(), resource.getResourceName(), resource.getResourceAsStr());
        AddResourceResponseDocument responseDocument = AddResourceResponseDocument.Factory.newInstance();
        responseDocument.addNewAddResourceResponse();
        log.info("Response " + responseDocument.xmlText());
        return responseDocument;
    }
View Full Code Here

TOP

Related Classes of xregistry.generated.AddResourceResponseDocument

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.