View Javadoc
1   package com.kodexa.client.pipeline;
2   
3   /**
4    * An option drive step has the ability to have options passed and set on it
5    */
6   public interface OptionDrivenStep {
7   
8       void setOptions(Options options);
9   
10  }