Package xregistry.generated

Examples of xregistry.generated.ListSubActorsGivenAGroupDocument


        ListUsersResponseDocument responseDocument = proxy.listUsers(input);
       
        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.ListSubActorsGivenAGroupDocument

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.