public interface IAuthorityGroupManager
| Modifier and Type | Method and Description |
|---|---|
IAuthorityGroup |
create()
Create a new authority group object.
|
void |
deinstall()
Uninstall the manager.
|
void |
delete(java.lang.String name)
Delete an authority group.
|
void |
exportConfiguration(java.io.OutputStream os)
Export configuration
|
IAuthorityGroup[] |
getAllGroups()
Obtain a list of the authority groups, ordered by name.
|
java.lang.String |
getGroupDescriptionColumn()
Get the authority connection description column.
|
java.lang.String |
getGroupNameColumn()
Get the authority connection name column.
|
java.lang.String |
getTableName()
Get the authority connection table name.
|
void |
importConfiguration(java.io.InputStream is)
Import configuration
|
void |
install()
Install the manager.
|
IAuthorityGroup |
load(java.lang.String name)
Load a authority group by name.
|
IAuthorityGroup[] |
loadMultiple(java.lang.String[] names)
Load multiple authority groups by name.
|
boolean |
save(IAuthorityGroup object)
Save an authority group object.
|
void install()
throws ManifoldCFException
ManifoldCFExceptionvoid deinstall()
throws ManifoldCFException
ManifoldCFExceptionvoid exportConfiguration(java.io.OutputStream os)
throws java.io.IOException,
ManifoldCFException
java.io.IOExceptionManifoldCFExceptionvoid importConfiguration(java.io.InputStream is)
throws java.io.IOException,
ManifoldCFException
java.io.IOExceptionManifoldCFExceptionIAuthorityGroup[] getAllGroups() throws ManifoldCFException
ManifoldCFExceptionIAuthorityGroup load(java.lang.String name) throws ManifoldCFException
name - is the name of the authority group.ManifoldCFExceptionIAuthorityGroup[] loadMultiple(java.lang.String[] names) throws ManifoldCFException
names - are the names to load.ManifoldCFExceptionIAuthorityGroup create() throws ManifoldCFException
ManifoldCFExceptionboolean save(IAuthorityGroup object) throws ManifoldCFException
object - is the object to save.ManifoldCFExceptionvoid delete(java.lang.String name)
throws ManifoldCFException
name - is the name of the group to delete. If the
name does not exist, no error is returned.ManifoldCFExceptionjava.lang.String getTableName()
java.lang.String getGroupNameColumn()
java.lang.String getGroupDescriptionColumn()