View Javadoc
1   /*
2    * Copyright 2007-2008 The Kuali Foundation
3    * 
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    * http://www.opensource.org/licenses/ecl2.php
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.ole.sys.businessobject;
17  
18  
19  import org.kuali.rice.krad.datadictionary.AttributeReference;
20  
21  public class GenericAttributes extends AttributeReference {
22  
23      private String namespaceCode;
24      private String searchType;
25      private String displayType;
26      private String documentTotalAmount;
27      private String routingAttributeTitle;
28  
29      private Integer transactionEntrySequenceId;
30      private Integer sequenceNumber;
31      private Integer itemSequenceId;
32      private Integer transactionLedgerEntrySequenceNumber;
33      private String universityFiscalAccountingPeriod;
34      private Integer genericFiscalYear;
35      private String maxDollarAmount;
36      private String minDollarAmount;
37      private String totalDollarAmount;
38      private String financialDocumentStatusName;
39      private String financialSystemDocumentTypeCode;
40      private String referenceTypeCode;
41  
42      public GenericAttributes() {
43          super();
44      }
45  
46      public String getFinancialDocumentStatusName() {
47          return financialDocumentStatusName;
48      }
49  
50      public void setFinancialDocumentStatusName(String financialDocumentStatusName) {
51          this.financialDocumentStatusName = financialDocumentStatusName;
52      }
53  
54      public String getDocumentTotalAmount() {
55          return documentTotalAmount;
56      }
57  
58      public void setDocumentTotalAmount(String documentTotalAmount) {
59          this.documentTotalAmount = documentTotalAmount;
60      }
61  
62      public String getSearchType() {
63          return searchType;
64      }
65  
66      public void setSearchType(String searchType) {
67          this.searchType = searchType;
68      }
69  
70      public String getNamespaceCode() {
71          return namespaceCode;
72      }
73  
74      public void setNamespaceCode(String changedNamespaceCodes) {
75          this.namespaceCode = changedNamespaceCodes;
76      }
77  
78      public String getDisplayType() {
79          return displayType;
80      }
81  
82      public void setDisplayType(String displayType) {
83          this.displayType = displayType;
84      }
85  
86      public String getRoutingAttributeTitle() {
87          return routingAttributeTitle;
88      }
89  
90      public void setRoutingAttributeTitle(String routingAttributeTitle) {
91          this.routingAttributeTitle = routingAttributeTitle;
92      }
93  
94      public Integer getTransactionEntrySequenceId() {
95          return transactionEntrySequenceId;
96      }
97  
98      public void setTransactionEntrySequenceId(Integer transactionEntrySequenceId) {
99          this.transactionEntrySequenceId = transactionEntrySequenceId;
100     }
101 
102     public Integer getSequenceNumber() {
103         return sequenceNumber;
104     }
105 
106     public void setSequenceNumber(Integer sequenceNumber) {
107         this.sequenceNumber = sequenceNumber;
108     }
109 
110     public Integer getItemSequenceId() {
111         return itemSequenceId;
112     }
113     
114     public void setItemSequenceId(Integer itemSequenceId) {
115         this.itemSequenceId = itemSequenceId;
116     }
117     
118     public Integer getTransactionLedgerEntrySequenceNumber() {
119         return transactionLedgerEntrySequenceNumber;
120     }
121     
122     public void setTransactionLedgerEntrySequenceNumber(Integer transactionLedgerEntrySequenceNumber) {
123         this.transactionLedgerEntrySequenceNumber = transactionLedgerEntrySequenceNumber;
124     }
125     
126     public String getUniversityFiscalAccountingPeriod() {
127         return universityFiscalAccountingPeriod;
128     }
129 
130     public void setUniversityFiscalAccountingPeriod(String universityFiscalAccountingPeriod) {
131         this.universityFiscalAccountingPeriod = universityFiscalAccountingPeriod;
132     }
133 
134     public Integer getGenericFiscalYear() {
135         return genericFiscalYear;
136     }
137 
138     public void setGenericFiscalYear(Integer genericFiscalYear) {
139         this.genericFiscalYear = genericFiscalYear;
140     }
141 
142     public String getMaxDollarAmount() {
143         return maxDollarAmount;
144     }
145 
146     public void setMaxDollarAmount(String maxDollarAmount) {
147         this.maxDollarAmount = maxDollarAmount;
148     }
149 
150     public String getMinDollarAmount() {
151         return minDollarAmount;
152     }
153 
154     public void setMinDollarAmount(String minDollarAmount) {
155         this.minDollarAmount = minDollarAmount;
156     }
157 
158     public String getTotalDollarAmount() {
159         return totalDollarAmount;
160     }
161 
162     public void setTotalDollarAmount(String totalDollarAmount) {
163         this.totalDollarAmount = totalDollarAmount;
164     }
165 
166     /**
167      * Gets the financialSystemDocumentTypeCode attribute. 
168      * @return Returns the financialSystemDocumentTypeCode.
169      */
170     public String getFinancialSystemDocumentTypeCode() {
171         return financialSystemDocumentTypeCode;
172     }
173 
174     /**
175      * Sets the financialSystemDocumentTypeCode attribute value.
176      * @param financialSystemDocumentTypeCode The financialSystemDocumentTypeCode to set.
177      */
178     public void setFinancialSystemDocumentTypeCode(String financialSystemDocumentTypeCode) {
179         this.financialSystemDocumentTypeCode = financialSystemDocumentTypeCode;
180     }
181 
182     /**
183      * Gets the referenceDocumentTypeCode attribute. 
184      * @return Returns the referenceDocumentTypeCode.
185      */
186     public String getReferenceTypeCode() {
187         return referenceTypeCode;
188     }
189 
190     /**
191      * Sets the referenceDocumentTypeCode attribute value.
192      * @param referenceDocumentTypeCode The referenceDocumentTypeCode to set.
193      */
194     public void setReferenceTypeCode(String referenceDocumentTypeCode) {
195         this.referenceTypeCode = referenceDocumentTypeCode;
196     }
197 }