com.instantbank.component.lettertemplate.util
Class LetterBatchStartModel
java.lang.Object
|
+--com.instantbank.component.lettertemplate.util.LetterBatchStartModel
- All Implemented Interfaces:
- java.io.Serializable
- public class LetterBatchStartModel
- extends java.lang.Object
- implements java.io.Serializable
Utility class allowing manipulation of letter batch Job.
- Author:
- InstantBank (Jorge Cardenas, Roberto Contreras).
- See Also:
- Serialized Form
Field Summary |
private java.util.ArrayList |
other
Array list of JobData object. |
private java.util.ArrayList |
outOfFrequency
Array list of JobData object. |
private java.util.ArrayList |
toRun
Array list of JobData object. |
Constructor Summary |
LetterBatchStartModel(java.util.ArrayList toRun,
java.util.ArrayList outOfFrequency,
java.util.ArrayList other)
Constructor . |
Method Summary |
java.util.ArrayList |
getOther()
Getter method for jobs inactive, not yet active or on request. |
java.util.ArrayList |
getOutOfFrequency()
Getter method for jobs out of frequency. |
java.util.ArrayList |
getToRun()
Getter method for jobs to run. |
Methods inherited from class java.lang.Object |
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait |
toRun
private java.util.ArrayList toRun
- Array list of JobData object. Its elements are jobs to run.
outOfFrequency
private java.util.ArrayList outOfFrequency
- Array list of JobData object. Its elements are jobs out of frequency.
other
private java.util.ArrayList other
- Array list of JobData object. Its elements are jobs inactive, not yet active
or on request.
LetterBatchStartModel
public LetterBatchStartModel(java.util.ArrayList toRun,
java.util.ArrayList outOfFrequency,
java.util.ArrayList other)
- Constructor .
- Parameters:
toRun
- The jobs to run.outOfFrequency
- The jobs out of frequency.other
- The jobs inactive, not yet active or on request.
getToRun
public java.util.ArrayList getToRun()
- Getter method for jobs to run.
- Returns:
- toRun ArrayList with jobs to run.
getOutOfFrequency
public java.util.ArrayList getOutOfFrequency()
- Getter method for jobs out of frequency.
- Returns:
- outOfFrequency ArrayList with jobs out of frequency.
getOther
public java.util.ArrayList getOther()
- Getter method for jobs inactive, not yet active or on request.
- Returns:
- other ArrayList with jobs inactive, not yet active or on request.