Add Users to Group
Use the addUserToGroup
API to add a new user to an existing group.
NAESession session = NAESession.getSession("username", "password".toCharArray());
NAEAdminRequestProcessor processor= new NAEAdminRequestProcessor(session);
boolean response=processor.addUserToGroup("group1", Arrays.asList(new String[] {"user1"}));