Interface CasProcessorConfiguration
-
- All Known Implementing Classes:
CasProcessorConfigurationJAXBImpl
public interface CasProcessorConfiguration
Interface for setter and getter methods for the Cas Processor configuration as defined in the CPE descriptor. Through these methods an implmentation gets access to individual Cas Processor configuration settings.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getActionOnError()
String
getActionOnMaxRestart()
int
getBatchSize()
String
getDeploymentParameter(String aDeployParameter)
List
getDeploymentParameters()
String
getDeploymentType()
URL
getDescriptorUrl()
int
getErrorRate()
long
getErrorSampleSize()
Execute
getExecSpec()
LinkedList
getFilter()
String
getFilterString()
String[]
getKeysToDrop()
int
getMaxErrorCount()
int
getMaxRestartCount()
int
getMaxRetryCount()
int
getMaxTimeToWaitBetweenRetries()
String
getName()
long
getTimeout()
boolean
isJavaProcess()
boolean
runInSeparateProcess()
-
-
-
Method Detail
-
getName
String getName()
-
getTimeout
long getTimeout()
-
runInSeparateProcess
boolean runInSeparateProcess()
-
isJavaProcess
boolean isJavaProcess()
-
getErrorRate
int getErrorRate()
-
getMaxErrorCount
int getMaxErrorCount()
-
getErrorSampleSize
long getErrorSampleSize()
-
getActionOnError
String getActionOnError()
-
getActionOnMaxRestart
String getActionOnMaxRestart()
-
getMaxRestartCount
int getMaxRestartCount()
-
getMaxRetryCount
int getMaxRetryCount()
-
getDeploymentParameters
List getDeploymentParameters()
-
getDeploymentType
String getDeploymentType()
-
getFilterString
String getFilterString()
-
getFilter
LinkedList getFilter() throws ResourceConfigurationException
- Throws:
ResourceConfigurationException
-
getKeysToDrop
String[] getKeysToDrop() throws ResourceConfigurationException
- Throws:
ResourceConfigurationException
-
getBatchSize
int getBatchSize()
-
getDescriptorUrl
URL getDescriptorUrl() throws ResourceConfigurationException
- Throws:
ResourceConfigurationException
-
getExecSpec
Execute getExecSpec()
-
getMaxTimeToWaitBetweenRetries
int getMaxTimeToWaitBetweenRetries()
-
-