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
ManifoldCFException
void deinstall() throws ManifoldCFException
ManifoldCFException
void exportConfiguration(java.io.OutputStream os) throws java.io.IOException, ManifoldCFException
java.io.IOException
ManifoldCFException
void importConfiguration(java.io.InputStream is) throws java.io.IOException, ManifoldCFException
java.io.IOException
ManifoldCFException
IAuthorityGroup[] getAllGroups() throws ManifoldCFException
ManifoldCFException
IAuthorityGroup load(java.lang.String name) throws ManifoldCFException
name
- is the name of the authority group.ManifoldCFException
IAuthorityGroup[] loadMultiple(java.lang.String[] names) throws ManifoldCFException
names
- are the names to load.ManifoldCFException
IAuthorityGroup create() throws ManifoldCFException
ManifoldCFException
boolean save(IAuthorityGroup object) throws ManifoldCFException
object
- is the object to save.ManifoldCFException
void 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.ManifoldCFException
java.lang.String getTableName()
java.lang.String getGroupNameColumn()
java.lang.String getGroupDescriptionColumn()