Package xregistry.generated

Examples of xregistry.generated.DeleteGroupDocument


        usertoGroup.setDescription(description);
        proxy.createUser(input);
       
    }
    public void deleteGroup(String groupID) throws XregistryException {
        DeleteGroupDocument input = DeleteGroupDocument.Factory.newInstance();
        input.addNewDeleteGroup().setGroupName(groupID);
        proxy.deleteGroup(input);
       
    }
View Full Code Here

TOP

Related Classes of xregistry.generated.DeleteGroupDocument

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.