Package xregistry.generated.ListSubActorsGivenAGroupDocument

Examples of xregistry.generated.ListSubActorsGivenAGroupDocument.ListSubActorsGivenAGroup


   
   
    public ListSubActorsGivenAGroupResponseDocument listSubActorsGivenAGroup(ListSubActorsGivenAGroupDocument input) throws XregistryException {
        log.info("Request Received " + input.xmlText());
        ListSubActorsGivenAGroup listSubActorsGivenAGroup = input.getListSubActorsGivenAGroup();
        Actor[] actors = registryImpl.listSubActorsGivenAGroup(findUserDN(), listSubActorsGivenAGroup.getGroup());

        ListSubActorsGivenAGroupResponseDocument responseDocument = ListSubActorsGivenAGroupResponseDocument.Factory
                .newInstance();
        responseDocument.addNewListSubActorsGivenAGroupResponse().setActorArray(actors);
        log.info("Response  Sent  " + responseDocument.xmlText());
View Full Code Here

TOP

Related Classes of xregistry.generated.ListSubActorsGivenAGroupDocument.ListSubActorsGivenAGroup

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.