Package xregistry.generated.RemoveGroupFromGroupDocument

Examples of xregistry.generated.RemoveGroupFromGroupDocument.RemoveGroupFromGroup


        ListSubActorsGivenAGroupResponseDocument responseDocument = proxy.listSubActorsGivenAGroup(input);
        return responseDocument.getListSubActorsGivenAGroupResponse().getActorArray();
    }
    public void removeGroupFromGroup(String group, String grouptoRemoved) throws XregistryException {
        RemoveGroupFromGroupDocument input = RemoveGroupFromGroupDocument.Factory.newInstance();
        RemoveGroupFromGroup removeGroupFromGroup = input.addNewRemoveGroupFromGroup();
        removeGroupFromGroup.setMasterGroup(group);
        removeGroupFromGroup.setGroupToremove(grouptoRemoved);
        proxy.removeGroupFromGroup(input);
    }
View Full Code Here

TOP

Related Classes of xregistry.generated.RemoveGroupFromGroupDocument.RemoveGroupFromGroup

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.