Interface ProcessingStepParameter
- All Known Implementing Classes:
AbstractProcessingStepParameter
,BatchSizeProcessingStepParameter
,PageSizeProcessingStepParameter
,PrimaryKeyColumnProcessingStepParameter
,TextColumnProcessingStepParameter
,TextDocumentTableNameProcessingStepParameter
,TextDocumentWithTitleTableNameProcessingStepParameter
,TitleColumnProcessingStepParameter
public interface ProcessingStepParameter
Represents a read-only parameter passed on to a processing step.
Subclasses must be annotated with a unique JAXB XmlRootElement name, and
configure their XML binding appropriately.
- Author:
- Alejandro González García
- See Also:
ProcessingStepDefinition
-
Method Details
-
getName
java.lang.String getName()Retrieves the name of the processing step parameter.- Returns:
- The name of the processing step parameter. It never is
null
.
-
getValue
java.lang.String getValue()Returns the value of the processing step parameter.- Returns:
- The value of the processing step parameter. It never is
null
.
-