Interface CasProcessorDeploymentParam
- All Superinterfaces:
Cloneable
,MetaDataObject
,Serializable
,XMLizable
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
Modifier and TypeMethodDescriptionReturns the name of the parameterReturns deployment parameter value typeReturns deployment parameter valuevoid
setParameterName
(String aParamName) Sets the name of the parametervoid
setParameterType
(String aParamType) Sets deployment parameter value typevoid
setParameterValue
(String aParamValue) Sets the value of the deployment parameterMethods 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 Details
-
setParameterName
Sets the name of the parameter- Parameters:
aParamName
- - a name- Throws:
CpeDescriptorException
- tbd
-
getParameterName
Returns the name of the parameter- Returns:
- - name as String
- Throws:
CpeDescriptorException
- tbd
-
setParameterValue
Sets the value of the deployment parameter- Parameters:
aParamValue
- - parameter value- Throws:
CpeDescriptorException
- tbd
-
getParameterValue
Returns deployment parameter value- Returns:
- - value as String
- Throws:
CpeDescriptorException
- tbd
-
setParameterType
Sets deployment parameter value type- Parameters:
aParamType
- - value type (string, int, etc)- Throws:
CpeDescriptorException
- tbd
-
getParameterType
Returns deployment parameter value type- Returns:
- - value type (string, int, etc)
- Throws:
CpeDescriptorException
- tbd
-