View Javadoc
1   package org.kuali.ole.batch.bo;
2   
3   import org.kuali.ole.select.bo.OleGloballyProtectedField;
4   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
5   
6   /**
7    * Created with IntelliJ IDEA.
8    * User: adityas
9    * Date: 7/6/13
10   * Time: 4:35 PM
11   * To change this template use File | Settings | File Templates.
12   */
13  public class OLEBatchProcessProfileProtectedField extends PersistableBusinessObjectBase {
14  
15      private String oleProfileProtectedFieldId;
16      private String dataType;
17      private String tag;
18      private String firstIndicator;
19      private String secondIndicator;
20      private String subField;
21      private String subFieldContains;
22      private boolean ignoreValue;
23      private String batchProcessProfileId;
24      private String oleGloballyProtectedFieldId;
25      private OleGloballyProtectedField oleGloballyProtectedField;
26      private OLEBatchProcessProfileBo oleBatchProcessProfileBo;
27  
28      public String getOleGloballyProtectedFieldId() {
29          return oleGloballyProtectedFieldId;
30      }
31  
32      public void setOleGloballyProtectedFieldId(String oleGloballyProtectedFieldId) {
33          this.oleGloballyProtectedFieldId = oleGloballyProtectedFieldId;
34      }
35  
36      public OleGloballyProtectedField getOleGloballyProtectedField() {
37          return oleGloballyProtectedField;
38      }
39  
40      public void setOleGloballyProtectedField(OleGloballyProtectedField oleGloballyProtectedField) {
41          this.oleGloballyProtectedField = oleGloballyProtectedField;
42      }
43  
44      public String getBatchProcessProfileId() {
45          return batchProcessProfileId;
46      }
47  
48      public void setBatchProcessProfileId(String batchProcessProfileId) {
49          this.batchProcessProfileId = batchProcessProfileId;
50      }
51  
52      public OLEBatchProcessProfileBo getOleBatchProcessProfileBo() {
53          return oleBatchProcessProfileBo;
54      }
55  
56      public void setOleBatchProcessProfileBo(OLEBatchProcessProfileBo oleBatchProcessProfileBo) {
57          this.oleBatchProcessProfileBo = oleBatchProcessProfileBo;
58      }
59  
60      public String getOleProfileProtectedFieldId() {
61          return oleProfileProtectedFieldId;
62      }
63  
64      public void setOleProfileProtectedFieldId(String oleProfileProtectedFieldId) {
65          this.oleProfileProtectedFieldId = oleProfileProtectedFieldId;
66      }
67  
68      public String getTag() {
69          return tag;
70      }
71  
72      public void setTag(String tag) {
73          this.tag = tag;
74      }
75  
76      public String getFirstIndicator() {
77          return firstIndicator;
78      }
79  
80      public void setFirstIndicator(String firstIndicator) {
81          this.firstIndicator = firstIndicator;
82      }
83  
84      public String getSecondIndicator() {
85          return secondIndicator;
86      }
87  
88      public void setSecondIndicator(String secondIndicator) {
89          this.secondIndicator = secondIndicator;
90      }
91  
92      public String getSubField() {
93          return subField;
94      }
95  
96      public void setSubField(String subField) {
97          this.subField = subField;
98      }
99  
100     public boolean isIgnoreValue() {
101         return ignoreValue;
102     }
103 
104     public void setIgnoreValue(boolean ignoreValue) {
105         this.ignoreValue = ignoreValue;
106     }
107 
108     public String getDataType() {
109         return dataType;
110     }
111 
112     public void setDataType(String dataType) {
113         this.dataType = dataType;
114     }
115 
116     public String getSubFieldContains() {
117         return subFieldContains;
118     }
119 
120     public void setSubFieldContains(String subFieldContains) {
121         this.subFieldContains = subFieldContains;
122     }
123 }