Class CacheKeyFactory
- java.lang.Object
-
- org.apache.manifoldcf.core.interfaces.CacheKeyFactory
-
- org.apache.manifoldcf.agents.interfaces.CacheKeyFactory
-
- Direct Known Subclasses:
CacheKeyFactory
public class CacheKeyFactory extends CacheKeyFactory
This class just represents a central place where cache keys are assembled. All methods are static.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
_rcsid
-
Constructor Summary
Constructors Modifier Constructor Description protected
CacheKeyFactory()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.String
makeOutputConnectionKey(java.lang.String connectionName)
Construct a key which represents an individual output connection.static java.lang.String
makeOutputConnectionsKey()
Construct a key which represents the general list of output connectors.static java.lang.String
makeTransformationConnectionKey(java.lang.String connectionName)
Construct a key which represents an individual transformation connection.static java.lang.String
makeTransformationConnectionsKey()
Construct a key which represents the general list of transformation connectors.-
Methods inherited from class org.apache.manifoldcf.core.interfaces.CacheKeyFactory
makeDatabaseKey, makeDatabaseKey, makeTableKey
-
-
-
-
Field Detail
-
_rcsid
public static final java.lang.String _rcsid
- See Also:
- Constant Field Values
-
-
Method Detail
-
makeOutputConnectionsKey
public static java.lang.String makeOutputConnectionsKey()
Construct a key which represents the general list of output connectors.- Returns:
- the cache key.
-
makeOutputConnectionKey
public static java.lang.String makeOutputConnectionKey(java.lang.String connectionName)
Construct a key which represents an individual output connection.- Parameters:
connectionName
- is the name of the connector.- Returns:
- the cache key.
-
makeTransformationConnectionsKey
public static java.lang.String makeTransformationConnectionsKey()
Construct a key which represents the general list of transformation connectors.- Returns:
- the cache key.
-
makeTransformationConnectionKey
public static java.lang.String makeTransformationConnectionKey(java.lang.String connectionName)
Construct a key which represents an individual transformation connection.- Parameters:
connectionName
- is the name of the connector.- Returns:
- the cache key.
-
-