Package xregistry.generated.CreateGroupDocument

Examples of xregistry.generated.CreateGroupDocument.CreateGroup


        proxy.addUsertoGroup(input);
       
    }
    public void createGroup(String newGroupName, String description) throws XregistryException {
        CreateGroupDocument input = CreateGroupDocument.Factory.newInstance();
        CreateGroup UsertoGroup = input.addNewCreateGroup();
        UsertoGroup.setGroupName(newGroupName);
        UsertoGroup.setDescription(description);
        proxy.createGroup(input);
       
    }
View Full Code Here

TOP

Related Classes of xregistry.generated.CreateGroupDocument.CreateGroup

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.