org.apache.manifoldcf.agents.interfaces
Interface IOutputConnection

All Known Implementing Classes:
OutputConnection

public interface IOutputConnection

An instance of this interface represents a paper object that describes an output connection. This is the paper object meant for editing and manipulation.


Field Summary
static java.lang.String _rcsid
           
 
Method Summary
 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.
 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.
 

Field Detail

_rcsid

static final java.lang.String _rcsid
See Also:
Constant Field Values
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.