View Javadoc
1   package org.kuali.ole.batch.bo;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4   
5   /**
6    * Created with IntelliJ IDEA.
7    * User: adityas
8    * Date: 7/10/13
9    * Time: 3:43 PM
10   * To change this template use File | Settings | File Templates.
11   */
12  public class OLEBatchGloballyProtectedField extends PersistableBusinessObjectBase {
13      private String id;
14      private String globallyProtectedFieldId;
15      private String tag;
16      private String firstIndicator;
17      private String secondIndicator;
18      private String subField;
19      private boolean ignoreValue;
20      private String batchProcessProfileId;
21      private OLEBatchProcessProfileBo oleBatchProcessProfileBo;
22  
23      public String getBatchProcessProfileId() {
24          return batchProcessProfileId;
25      }
26  
27      public void setBatchProcessProfileId(String batchProcessProfileId) {
28          this.batchProcessProfileId = batchProcessProfileId;
29      }
30  
31      public OLEBatchProcessProfileBo getOleBatchProcessProfileBo() {
32          return oleBatchProcessProfileBo;
33      }
34  
35      public void setOleBatchProcessProfileBo(OLEBatchProcessProfileBo oleBatchProcessProfileBo) {
36          this.oleBatchProcessProfileBo = oleBatchProcessProfileBo;
37      }
38  
39      public String getGloballyProtectedFieldId() {
40          return globallyProtectedFieldId;
41      }
42  
43      public void setGloballyProtectedFieldId(String globallyProtectedFieldId) {
44          this.globallyProtectedFieldId = globallyProtectedFieldId;
45      }
46  
47      public String getTag() {
48          return tag;
49      }
50  
51      public void setTag(String tag) {
52          this.tag = tag;
53      }
54  
55      public String getFirstIndicator() {
56          return firstIndicator;
57      }
58  
59      public void setFirstIndicator(String firstIndicator) {
60          this.firstIndicator = firstIndicator;
61      }
62  
63      public String getSecondIndicator() {
64          return secondIndicator;
65      }
66  
67      public String getId() {
68          return id;
69      }
70  
71      public void setId(String id) {
72          this.id = id;
73      }
74  
75      public void setSecondIndicator(String secondIndicator) {
76          this.secondIndicator = secondIndicator;
77      }
78  
79      public String getSubField() {
80          return subField;
81      }
82  
83      public void setSubField(String subField) {
84          this.subField = subField;
85      }
86  
87      public boolean isIgnoreValue() {
88          return ignoreValue;
89      }
90  
91      public void setIgnoreValue(boolean ignoreValue) {
92          this.ignoreValue = ignoreValue;
93      }
94  }