Interface CasProcessorDeploymentParam
-
- All Superinterfaces:
java.lang.Cloneable
,MetaDataObject
,java.io.Serializable
,XMLizable
- All Known Implementing Classes:
CasProcessorDeploymentParamImpl
public interface CasProcessorDeploymentParam extends MetaDataObject
An object that holds configuration information used for building CPE Descriptor. It provides the means of configuring deployment parameter used by the CPE to deploy CasProcessor.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getParameterName()
Returns the name of the parameterjava.lang.String
getParameterType()
Returns deployment parameter value typejava.lang.String
getParameterValue()
Returns deployment parameter valuevoid
setParameterName(java.lang.String aParamName)
Sets the name of the parametervoid
setParameterType(java.lang.String aParamType)
Sets deployment parameter value typevoid
setParameterValue(java.lang.String aParamValue)
Sets the value of the deployment parameter-
Methods inherited from interface org.apache.uima.resource.metadata.MetaDataObject
clone, equals, getAttributeValue, getSourceUrl, getSourceUrlString, isModifiable, listAttributes, setAttributeValue, setSourceUrl
-
Methods inherited from interface org.apache.uima.util.XMLizable
buildFromXMLElement, buildFromXMLElement, toXML, toXML, toXML, toXML
-
-
-
-
Method Detail
-
setParameterName
void setParameterName(java.lang.String aParamName) throws CpeDescriptorException
Sets the name of the parameter- Parameters:
aParamName
- - a name- Throws:
CpeDescriptorException
- tbd
-
getParameterName
java.lang.String getParameterName() throws CpeDescriptorException
Returns the name of the parameter- Returns:
- - name as String
- Throws:
CpeDescriptorException
- tbd
-
setParameterValue
void setParameterValue(java.lang.String aParamValue) throws CpeDescriptorException
Sets the value of the deployment parameter- Parameters:
aParamValue
- - parameter value- Throws:
CpeDescriptorException
- tbd
-
getParameterValue
java.lang.String getParameterValue() throws CpeDescriptorException
Returns deployment parameter value- Returns:
- - value as String
- Throws:
CpeDescriptorException
- tbd
-
setParameterType
void setParameterType(java.lang.String aParamType) throws CpeDescriptorException
Sets deployment parameter value type- Parameters:
aParamType
- - value type (string, int, etc)- Throws:
CpeDescriptorException
- tbd
-
getParameterType
java.lang.String getParameterType() throws CpeDescriptorException
Returns deployment parameter value type- Returns:
- - value type (string, int, etc)
- Throws:
CpeDescriptorException
- tbd
-
-