Package xregistry.generated

Examples of xregistry.generated.ListSubActorsGivenAGroupResponseDocument


    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());
        return responseDocument;
    }
View Full Code Here


        return responseDocument.getListUsersResponse().getUserArray();
    }
    public Actor[] listSubActorsGivenAGroup(String group) throws XregistryException {
        ListSubActorsGivenAGroupDocument input =  ListSubActorsGivenAGroupDocument.Factory.newInstance();
        input.addNewListSubActorsGivenAGroup().setGroup(group);
        ListSubActorsGivenAGroupResponseDocument responseDocument = proxy.listSubActorsGivenAGroup(input);
        return responseDocument.getListSubActorsGivenAGroupResponse().getActorArray();
    }
View Full Code Here

TOP

Related Classes of xregistry.generated.ListSubActorsGivenAGroupResponseDocument

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.