Interface IMappingConnection
-
- All Known Implementing Classes:
MappingConnection
public interface IMappingConnectionThis interface describes a paper object which is an mapping connection.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetClassName()Get the class name.ConfigParamsgetConfigParams()Get the configuration parameters.java.lang.StringgetDescription()Get description.booleangetIsNew()Get 'isnew' condition.intgetMaxConnections()Get the maximum size of the connection pool.java.lang.StringgetName()Get name.java.lang.StringgetPrerequisiteMapping()Get the prerequisite mapper, if any.voidsetClassName(java.lang.String className)Set the class name.voidsetDescription(java.lang.String description)Set description.voidsetIsNew(boolean isnew)Set 'isnew' condition.voidsetMaxConnections(int maxCount)Set the maximum size of the connection pool.voidsetName(java.lang.String name)Set name.voidsetPrerequisiteMapping(java.lang.String mapping)Set the prerequisite mapper, if any.
-
-
-
Method Detail
-
setIsNew
void setIsNew(boolean isnew)
Set 'isnew' condition.- Parameters:
isnew- true if this is a new instance.
-
getIsNew
boolean getIsNew()
Get 'isnew' condition.- Returns:
- true if this is a new connection, false otherwise.
-
setName
void setName(java.lang.String name)
Set name.- Parameters:
name- is the name.
-
getName
java.lang.String getName()
Get name.- Returns:
- the name
-
setDescription
void setDescription(java.lang.String description)
Set description.- Parameters:
description- is the description.
-
getDescription
java.lang.String getDescription()
Get description.- Returns:
- the description
-
setClassName
void setClassName(java.lang.String className)
Set the class name.- Parameters:
className- is the class name.
-
getClassName
java.lang.String getClassName()
Get the class name.- Returns:
- the class name
-
getConfigParams
ConfigParams getConfigParams()
Get the configuration parameters.- Returns:
- the map. Can be modified.
-
setMaxConnections
void setMaxConnections(int maxCount)
Set the maximum size of the connection pool.- Parameters:
maxCount- is the maximum connection count per JVM.
-
getMaxConnections
int getMaxConnections()
Get the maximum size of the connection pool.- Returns:
- the maximum size.
-
setPrerequisiteMapping
void setPrerequisiteMapping(java.lang.String mapping)
Set the prerequisite mapper, if any.- Parameters:
mapping- is the name of the mapping connection to use to get the input user name, or null.
-
getPrerequisiteMapping
java.lang.String getPrerequisiteMapping()
Get the prerequisite mapper, if any.- Returns:
- the mapping connection name whose output should be used as the input user name.
-
-