Package org.jivesoftware.openfire.crowd
Class CrowdAdminProvider
- java.lang.Object
-
- org.jivesoftware.openfire.crowd.CrowdAdminProvider
-
- All Implemented Interfaces:
AdminProvider
public class CrowdAdminProvider extends Object implements AdminProvider
Admin provider which will map a crowd group with openfire authorized admin users
-
-
Constructor Summary
Constructors Constructor Description CrowdAdminProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<org.xmpp.packet.JID>getAdmins()Returns a list of JIDs of accounts with administrative privileges.booleanisReadOnly()Indicates whether the admin list is read-only or not.voidsetAdmins(List<org.xmpp.packet.JID> admins)Sets the list of admin accounts, by JID.
-
-
-
Method Detail
-
getAdmins
public List<org.xmpp.packet.JID> getAdmins()
Description copied from interface:AdminProviderReturns a list of JIDs of accounts with administrative privileges.- Specified by:
getAdminsin interfaceAdminProvider- Returns:
- The list of admin users.
-
setAdmins
public void setAdmins(List<org.xmpp.packet.JID> admins)
Description copied from interface:AdminProviderSets the list of admin accounts, by JID.- Specified by:
setAdminsin interfaceAdminProvider- Parameters:
admins- List of JIDs of accounts to grant admin access to.
-
isReadOnly
public boolean isReadOnly()
Description copied from interface:AdminProviderIndicates whether the admin list is read-only or not. In other words, whether an admin can change who is an admin from the Openfire admin interface.- Specified by:
isReadOnlyin interfaceAdminProvider- Returns:
- True or false if the admin list can be edited.
-
-