Uses of Class
org.jivesoftware.openfire.commands.AdHocCommand
-
Packages that use AdHocCommand Package Description org.jivesoftware.openfire.commands Ad-Hoc Commands implementation (XEP-0050).org.jivesoftware.openfire.commands.admin org.jivesoftware.openfire.commands.admin.group org.jivesoftware.openfire.commands.admin.muc org.jivesoftware.openfire.commands.admin.user org.jivesoftware.openfire.commands.event org.jivesoftware.openfire.commands.generic org.jivesoftware.openfire.pubsub Implementation of Publish-Subscribe (XEP-0060). -
-
Uses of AdHocCommand in org.jivesoftware.openfire.commands
Methods in org.jivesoftware.openfire.commands that return AdHocCommand Modifier and Type Method Description AdHocCommand
AdHocCommandManager. getCommand(String code)
Returns the command whose code matches the specified code ornull
if none was found.Methods in org.jivesoftware.openfire.commands that return types with arguments of type AdHocCommand Modifier and Type Method Description Collection<AdHocCommand>
AdHocCommandManager. getCommands()
Returns a list with the available commands in this command manager.Methods in org.jivesoftware.openfire.commands with parameters of type AdHocCommand Modifier and Type Method Description void
AdHocCommandHandler. addCommand(AdHocCommand command)
Adds a new command to the list of supported ad-hoc commands by this server.void
AdHocCommandManager. addCommand(AdHocCommand command)
Adds a new command to the list of supported ad-hoc commands by this server.void
AdHocCommandHandler. removeCommand(AdHocCommand command)
Removes the command from the list of ad-hoc commands supported by this server.boolean
AdHocCommandManager. removeCommand(AdHocCommand command)
Removes the command from the list of ad-hoc commands supported by this server. -
Uses of AdHocCommand in org.jivesoftware.openfire.commands.admin
Subclasses of AdHocCommand in org.jivesoftware.openfire.commands.admin Modifier and Type Class Description class
EditAdminList
Edits the list of Openfire administratorsclass
EditAllowedList
Edits the list of external domains that are allowed to connect to Openfireclass
EditBlockedList
Edits the list of external domains that are disallowed to connect to Openfireclass
GetAdminConsoleInfo
Command that returns information about the admin console.class
GetListActiveUsers
Command that allows to retrieve a list of all active users.class
GetListDisabledUsers
Command that allows to retrieve a list of all disabled users.class
GetListIdleUsers
Command that allows to retrieve the list of idle users.class
GetListOnlineUsers
Command that allows to retrieve the number of registered users who are online at any one moment.class
GetListRegisteredUsers
Command that allows to retrieve a list of all registered users.class
GetNumberActiveUsers
Command that allows to retrieve the number of online users who are active at any one moment.class
GetNumberDisabledUsers
Command that allows to retrieve the number of disabled usersclass
GetNumberIdleUsers
Command that allows to retrieve the number of idle users.class
GetNumberOnlineUsers
Command that allows to retrieve the number of registered users who are online at any one moment.class
GetNumberRegisteredUsers
Command that allows to retrieve the number of registered usersclass
GetNumberUserSessions
Command that allows to retrieve the number of user sessions at any one moment.class
GetServerStats
Command that returns information about the server and some basic statistics.class
GetUsersPresence
Command that allows to retrieve the presence of all active users.class
HttpBindStatus
AdHoc command to return the current status of the HTTP-bind service.class
PacketsNotification
Command that allows to retrieve the presence of all active users.class
SendAnnouncementToOnlineUsers
Sends a message to all online users -
Uses of AdHocCommand in org.jivesoftware.openfire.commands.admin.group
Subclasses of AdHocCommand in org.jivesoftware.openfire.commands.admin.group Modifier and Type Class Description class
AddGroup
Command that allows to create and configure new groups.class
AddGroupUsers
Command that allows to add members or admins to a given group.class
DeleteGroup
Command that allows to delete existing groups.class
DeleteGroupUsers
Command that allows to delete members or admins from a given group.class
GetListGroups
Command that allows to retrieve a list of existing groups.class
GetListGroupUsers
Command that allows to retrieve list members of a given group.class
UpdateGroup
Command that allows to update a given group. -
Uses of AdHocCommand in org.jivesoftware.openfire.commands.admin.muc
Subclasses of AdHocCommand in org.jivesoftware.openfire.commands.admin.muc Modifier and Type Class Description class
CreateMUCRoom
Allows via AdHoc commands the creation of a Multi-User Chat room. -
Uses of AdHocCommand in org.jivesoftware.openfire.commands.admin.user
Subclasses of AdHocCommand in org.jivesoftware.openfire.commands.admin.user Modifier and Type Class Description class
AddUser
Adds a user to Openfire if the provider is not read-only.class
AuthenticateUser
Takes a user's username and password to authenticate them against the Openfire authprovider.class
ChangeUserPassword
Command that allows to change password of existing users.class
DeleteUser
Delete a user from Openfire if the provider is not read-only.class
DisableUser
Disables (locks) a user.class
EndUserSession
End a user sessionclass
GetUserRoster
Gets the roster of a user The implementation uses Openfire's LockOutManager to apply the configuration state.class
ReEnableUser
Re-Enables a user.class
UserProperties
An adhoc command to retrieve the properties of the user. -
Uses of AdHocCommand in org.jivesoftware.openfire.commands.event
Subclasses of AdHocCommand in org.jivesoftware.openfire.commands.event Modifier and Type Class Description class
GroupAdminAdded
Notifies the that an admin was added to the group.class
GroupAdminRemoved
Notifies the that an admin was removed from the group.class
GroupCreated
Notifies the that a group was created.class
GroupDeleting
Notifies the that a group is being deleted.class
GroupMemberAdded
Notifies the that a member was added to the group.class
GroupMemberRemoved
Notifies the that a member was removed from the group.class
GroupModified
Notifies the that a group was modified.class
UserCreated
Notifies the that a user was created.class
UserDeleting
Notifies the deletion of a user.class
UserModified
Notifies the that a user was modified.class
VCardCreated
Notifies the that a vcard was created.class
VCardDeleting
Notifies the deletion of a vCard.class
VCardModified
Notifies the that a vCard was modified. -
Uses of AdHocCommand in org.jivesoftware.openfire.commands.generic
Subclasses of AdHocCommand in org.jivesoftware.openfire.commands.generic Modifier and Type Class Description class
Ping
A (very) basic ad-hoc command that returns the server time in UTC. -
Uses of AdHocCommand in org.jivesoftware.openfire.pubsub
Subclasses of AdHocCommand in org.jivesoftware.openfire.pubsub Modifier and Type Class Description class
PendingSubscriptionsCommand
Ad-hoc command that sends pending subscriptions to node owners.
-