public interface IAuthorityConnection
Modifier and Type | Method and Description |
---|---|
String |
getAuthDomain()
Get the authorization domain.
|
String |
getAuthGroup()
Get the authorization group.
|
String |
getClassName()
Get the class name.
|
ConfigParams |
getConfigParams()
Get the configuration parameters.
|
String |
getDescription()
Get description.
|
boolean |
getIsNew()
Get 'isnew' condition.
|
int |
getMaxConnections()
Get the maximum size of the connection pool.
|
String |
getName()
Get name.
|
String |
getPrerequisiteMapping()
Get the prerequisite mapper, if any.
|
void |
setAuthDomain(String domain)
Set the authorization domain.
|
void |
setAuthGroup(String groupName)
Set authorization group.
|
void |
setClassName(String className)
Set the class name.
|
void |
setDescription(String description)
Set description.
|
void |
setIsNew(boolean isnew)
Set 'isnew' condition.
|
void |
setMaxConnections(int maxCount)
Set the maximum size of the connection pool.
|
void |
setName(String name)
Set name.
|
void |
setPrerequisiteMapping(String mapping)
Set the prerequisite mapper, if any.
|
void setIsNew(boolean isnew)
isnew
- true if this is a new instance.boolean getIsNew()
void setName(String name)
name
- is the name.String getName()
void setDescription(String description)
description
- is the description.String getDescription()
void setClassName(String className)
className
- is the class name.String getClassName()
ConfigParams getConfigParams()
void setMaxConnections(int maxCount)
maxCount
- is the maximum connection count per JVM.int getMaxConnections()
void setPrerequisiteMapping(String mapping)
mapping
- is the name of the mapping connection to use to get the input user name,
or null.String getPrerequisiteMapping()
void setAuthDomain(String domain)
domain
- is the authorization domain.String getAuthDomain()
void setAuthGroup(String groupName)
groupName
- is the name of the group.String getAuthGroup()