public interface IMappingConnection
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getClassName()
Get the class name.
|
ConfigParams |
getConfigParams()
Get the configuration parameters.
|
java.lang.String |
getDescription()
Get description.
|
boolean |
getIsNew()
Get 'isnew' condition.
|
int |
getMaxConnections()
Get the maximum size of the connection pool.
|
java.lang.String |
getName()
Get name.
|
java.lang.String |
getPrerequisiteMapping()
Get the prerequisite mapper, if any.
|
void |
setClassName(java.lang.String className)
Set the class name.
|
void |
setDescription(java.lang.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(java.lang.String name)
Set name.
|
void |
setPrerequisiteMapping(java.lang.String mapping)
Set the prerequisite mapper, if any.
|
void setIsNew(boolean isnew)
isnew
- true if this is a new instance.boolean getIsNew()
void setName(java.lang.String name)
name
- is the name.java.lang.String getName()
void setDescription(java.lang.String description)
description
- is the description.java.lang.String getDescription()
void setClassName(java.lang.String className)
className
- is the class name.java.lang.String getClassName()
ConfigParams getConfigParams()
void setMaxConnections(int maxCount)
maxCount
- is the maximum connection count per JVM.int getMaxConnections()
void setPrerequisiteMapping(java.lang.String mapping)
mapping
- is the name of the mapping connection to use to get the input user name,
or null.java.lang.String getPrerequisiteMapping()