public class AuthorityConnection extends Object implements IAuthorityConnection
Modifier and Type | Field and Description |
---|---|
static String |
_rcsid |
protected String |
authDomain |
protected String |
authGroup |
protected String |
className |
protected ConfigParams |
configParams |
protected String |
description |
protected boolean |
isNew |
protected int |
maxCount |
protected String |
name |
protected String |
prerequisiteMapping |
Constructor and Description |
---|
AuthorityConnection()
Constructor.
|
Modifier and Type | Method and Description |
---|---|
AuthorityConnection |
duplicate()
Clone this object.
|
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.
|
public static final String _rcsid
protected boolean isNew
protected String name
protected String description
protected String className
protected ConfigParams configParams
protected int maxCount
protected String prerequisiteMapping
protected String authDomain
protected String authGroup
public AuthorityConnection duplicate()
public void setIsNew(boolean isnew)
setIsNew
in interface IAuthorityConnection
isnew
- true if this is a new instance.public boolean getIsNew()
getIsNew
in interface IAuthorityConnection
public void setName(String name)
setName
in interface IAuthorityConnection
name
- is the name.public String getName()
getName
in interface IAuthorityConnection
public void setDescription(String description)
setDescription
in interface IAuthorityConnection
description
- is the description.public String getDescription()
getDescription
in interface IAuthorityConnection
public void setClassName(String className)
setClassName
in interface IAuthorityConnection
className
- is the class name.public String getClassName()
getClassName
in interface IAuthorityConnection
public ConfigParams getConfigParams()
getConfigParams
in interface IAuthorityConnection
public void setMaxConnections(int maxCount)
setMaxConnections
in interface IAuthorityConnection
maxCount
- is the maximum connection count per JVM.public int getMaxConnections()
getMaxConnections
in interface IAuthorityConnection
public void setPrerequisiteMapping(String mapping)
setPrerequisiteMapping
in interface IAuthorityConnection
mapping
- is the name of the mapping connection to use to get the input user name,
or null.public String getPrerequisiteMapping()
getPrerequisiteMapping
in interface IAuthorityConnection
public void setAuthDomain(String domain)
setAuthDomain
in interface IAuthorityConnection
domain
- is the authorization domain.public String getAuthDomain()
getAuthDomain
in interface IAuthorityConnection
public void setAuthGroup(String groupName)
setAuthGroup
in interface IAuthorityConnection
groupName
- is the name of the group.public String getAuthGroup()
getAuthGroup
in interface IAuthorityConnection