org.jivesoftware.openfire.group |
Groups, which are used to organize users together.
|
Java Source File Name | Type | Comment |
DefaultGroupProvider.java | Class | Database implementation of the GroupManager interface. |
Group.java | Class | Groups organize users into a single entity for easier management.
The actual group implementation is controlled by the
GroupProvider , which
includes things like the group name, the members, and adminstrators. |
GroupAlreadyExistsException.java | Class | Thrown when attempting to create a group that already exists. |
GroupCollection.java | Class | Provides a view of an array of group names as a Collection of Group objects. |
GroupManager.java | Class | Manages groups. |
GroupNotFoundException.java | Class | Thrown when unable to find or load a group. |
GroupProvider.java | Interface | Provider interface for groups. |
JDBCGroupProvider.java | Class | The JDBC group provider allows you to use an external database to define the make up of groups.
It is best used with the JDBCAuthProvider to provide integration between your external system and
Openfire. |