Commit ebe2a30d authored by Alex Wenckus's avatar Alex Wenckus Committed by alex

Added new commands to command handler.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@6162 b35dd754-fafc-0310-a699-88a17e54d16e
parent 7985b3fe
......@@ -17,6 +17,9 @@ import org.jivesoftware.wildfire.XMPPServer;
import org.jivesoftware.wildfire.auth.UnauthorizedException;
import org.jivesoftware.wildfire.commands.admin.*;
import org.jivesoftware.wildfire.commands.admin.user.ChangeUserPassword;
import org.jivesoftware.wildfire.commands.admin.user.AddUser;
import org.jivesoftware.wildfire.commands.admin.user.AuthenticateUser;
import org.jivesoftware.wildfire.commands.admin.user.UserProperties;
import org.jivesoftware.wildfire.commands.admin.group.*;
import org.jivesoftware.wildfire.disco.*;
import org.jivesoftware.wildfire.forms.spi.XDataFormImpl;
......@@ -194,7 +197,10 @@ public class AdHocCommandHandler extends IQHandler
addCommand(new AddGroup());
addCommand(new UpdateGroup());
addCommand(new DeleteGroup());
addCommand(new AddUser());
addCommand(new AuthenticateUser());
addCommand(new ChangeUserPassword());
addCommand(new UserProperties());
addCommand(new PacketsNotification());
}
......
......@@ -21,7 +21,9 @@ import java.util.List;
import java.util.Arrays;
/**
* An adhoc command to retrieve the properties of the user.
*
* @author Alexander Wenckus
*/
public class UserProperties extends AdHocCommand {
public String getCode() {
......
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