Package xregistry.generated

Examples of xregistry.generated.ListGroupsGivenAUserDocument


        ListGroupsResponseDocument responseDocument = proxy.listGroups(input);
       
        return responseDocument.getListGroupsResponse().getGroupArray();
    }
    public String[] listGroupsGivenAUser(String user) throws XregistryException {
        ListGroupsGivenAUserDocument input =  ListGroupsGivenAUserDocument.Factory.newInstance();
        input.addNewListGroupsGivenAUser().setUserName(user);
        ListGroupsGivenAUserResponseDocument responseDocument = proxy.listGroupsGivenAUser(input);
       
        return responseDocument.getListGroupsGivenAUserResponse().getGroupArray();
    }
View Full Code Here

TOP

Related Classes of xregistry.generated.ListGroupsGivenAUserDocument

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.