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.StringgetParameterName()Returns the name of the parameterjava.lang.StringgetParameterType()Returns deployment parameter value typejava.lang.StringgetParameterValue()Returns deployment parameter valuevoidsetParameterName(java.lang.String aParamName)Sets the name of the parametervoidsetParameterType(java.lang.String aParamType)Sets deployment parameter value typevoidsetParameterValue(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 CpeDescriptorExceptionSets the name of the parameter- Parameters:
aParamName- - a name- Throws:
CpeDescriptorException- tbd
-
getParameterName
java.lang.String getParameterName() throws CpeDescriptorExceptionReturns the name of the parameter- Returns:
- - name as String
- Throws:
CpeDescriptorException- tbd
-
setParameterValue
void setParameterValue(java.lang.String aParamValue) throws CpeDescriptorExceptionSets the value of the deployment parameter- Parameters:
aParamValue- - parameter value- Throws:
CpeDescriptorException- tbd
-
getParameterValue
java.lang.String getParameterValue() throws CpeDescriptorExceptionReturns deployment parameter value- Returns:
- - value as String
- Throws:
CpeDescriptorException- tbd
-
setParameterType
void setParameterType(java.lang.String aParamType) throws CpeDescriptorExceptionSets deployment parameter value type- Parameters:
aParamType- - value type (string, int, etc)- Throws:
CpeDescriptorException- tbd
-
getParameterType
java.lang.String getParameterType() throws CpeDescriptorExceptionReturns deployment parameter value type- Returns:
- - value type (string, int, etc)
- Throws:
CpeDescriptorException- tbd
-
-