View Javadoc
1   package org.kuali.ole.select.bo;
2   
3   import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
4   
5   import java.util.LinkedHashMap;
6   
7   /**
8    * This  OleGloballyProtectedField is the Business Object Class for  Globally Protected Field Maintenance Document
9    */
10  public class OleGloballyProtectedField extends PersistableBusinessObjectBase {
11  
12      private String oleGloballyProtectedFieldId;
13      private String tag;
14      private String firstIndicator;
15      private String secondIndicator;
16      private String subField;
17      private boolean activeIndicator;
18  
19      /**
20       * Gets the oleGloballyProtectedFieldId attribute.
21       *
22       * @return Returns the oleGloballyProtectedFieldId
23       */
24      public String getOleGloballyProtectedFieldId() {
25          return oleGloballyProtectedFieldId;
26      }
27  
28      /**
29       * Sets the oleGloballyProtectedFieldId attribute value.
30       *
31       * @param oleGloballyProtectedFieldId The oleGloballyProtectedFieldId to set.
32       */
33      public void setOleGloballyProtectedFieldId(String oleGloballyProtectedFieldId) {
34          this.oleGloballyProtectedFieldId = oleGloballyProtectedFieldId;
35      }
36  
37      /**
38       * Gets the tag attribute.
39       *
40       * @return Returns the tag
41       */
42      public String getTag() {
43          return tag;
44      }
45  
46      /**
47       * Sets the tag attribute value.
48       *
49       * @param tag The tag to set.
50       */
51      public void setTag(String tag) {
52          this.tag = tag;
53      }
54  
55      /**
56       * Gets the firstIndicator attribute.
57       *
58       * @return Returns the firstIndicator
59       */
60      public String getFirstIndicator() {
61          return firstIndicator;
62      }
63  
64      /**
65       * Sets the firstIndicator attribute value.
66       *
67       * @param firstIndicator The firstIndicator to set.
68       */
69      public void setFirstIndicator(String firstIndicator) {
70          this.firstIndicator = firstIndicator;
71      }
72  
73      /**
74       * Gets the secondIndicator attribute.
75       *
76       * @return Returns the secondIndicator
77       */
78      public String getSecondIndicator() {
79          return secondIndicator;
80      }
81  
82      /**
83       * Sets the secondIndicator attribute value.
84       *
85       * @param secondIndicator The secondIndicator to set.
86       */
87      public void setSecondIndicator(String secondIndicator) {
88          this.secondIndicator = secondIndicator;
89      }
90  
91      /**
92       * Gets the subField attribute.
93       *
94       * @return Returns the subField
95       */
96      public String getSubField() {
97          return subField;
98      }
99  
100     /**
101      * Sets the subField attribute value.
102      *
103      * @param subField The subField to set.
104      */
105     public void setSubField(String subField) {
106         this.subField = subField;
107     }
108 
109     /**
110      * Gets the activeIndicator attribute.
111      *
112      * @return Returns the activeIndicator
113      */
114     public boolean isActiveIndicator() {
115         return activeIndicator;
116     }
117 
118     /**
119      * Sets the activeIndicator attribute value.
120      *
121      * @param activeIndicator The activeIndicator to set.
122      */
123     public void setActiveIndicator(boolean activeIndicator) {
124         this.activeIndicator = activeIndicator;
125     }
126 
127     /**
128      * Gets the toStringMap attribute.
129      *
130      * @return Returns the toStringMap
131      */
132     protected LinkedHashMap toStringMapper() {
133         LinkedHashMap toStringMap = new LinkedHashMap();
134         toStringMap.put("oleGloballyProtectedFieldId", oleGloballyProtectedFieldId);
135         toStringMap.put("tag", tag);
136         toStringMap.put("firstIndicator", firstIndicator);
137         toStringMap.put("secondIndicator", secondIndicator);
138         toStringMap.put("subField", subField);
139         toStringMap.put("activeIndicator", activeIndicator);
140         return toStringMap;
141     }
142 }