Commit ee68a040 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Added commands for managing groups. JM-816

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@5138 b35dd754-fafc-0310-a699-88a17e54d16e
parent 90cb959d
......@@ -16,6 +16,7 @@ import org.jivesoftware.wildfire.IQHandlerInfo;
import org.jivesoftware.wildfire.XMPPServer;
import org.jivesoftware.wildfire.auth.UnauthorizedException;
import org.jivesoftware.wildfire.commands.admin.*;
import org.jivesoftware.wildfire.commands.admin.group.*;
import org.jivesoftware.wildfire.disco.*;
import org.jivesoftware.wildfire.forms.spi.XDataFormImpl;
import org.jivesoftware.wildfire.handler.IQHandler;
......@@ -185,6 +186,13 @@ public class AdHocCommandHandler extends IQHandler
addCommand(new GetNumberUserSessions());
addCommand(new GetListActiveUsers());
addCommand(new GetUsersPresence());
addCommand(new GetListGroups());
addCommand(new GetListGroupUsers());
addCommand(new AddGroupUsers());
addCommand(new DeleteGroupUsers());
addCommand(new AddGroup());
addCommand(new UpdateGroup());
addCommand(new DeleteGroup());
}
private void startCommand(AdHocCommand command) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment