View Javadoc
1   /*
2    * The Kuali Financial System, a comprehensive financial management system for higher education.
3    * 
4    * Copyright 2005-2014 The Kuali Foundation
5    * 
6    * This program is free software: you can redistribute it and/or modify
7    * it under the terms of the GNU Affero General Public License as
8    * published by the Free Software Foundation, either version 3 of the
9    * License, or (at your option) any later version.
10   * 
11   * This program is distributed in the hope that it will be useful,
12   * but WITHOUT ANY WARRANTY; without even the implied warranty of
13   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   * GNU Affero General Public License for more details.
15   * 
16   * You should have received a copy of the GNU Affero General Public License
17   * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18   */
19  package org.kuali.kfs.sys.businessobject;
20  
21  import org.kuali.rice.krad.bo.AttributeReferenceDummy;
22  
23  public class GenericAttributes extends AttributeReferenceDummy {
24  
25      private String namespaceCode;
26      private String searchType;
27      private String displayType;
28      private String documentTotalAmount;
29      private String routingAttributeTitle;
30  
31      private Integer transactionEntrySequenceId;
32      private Integer sequenceNumber;
33      private Integer itemSequenceId;
34      private Integer transactionLedgerEntrySequenceNumber;
35      private String universityFiscalAccountingPeriod;
36      private Integer genericFiscalYear;
37      private String maxDollarAmount;
38      private String minDollarAmount;
39      private String totalDollarAmount;
40      private String financialDocumentStatusName;
41      private String financialSystemDocumentTypeCode;
42      private String referenceTypeCode;
43  
44      public GenericAttributes() {
45          super();
46      }
47  
48      public String getFinancialDocumentStatusName() {
49          return financialDocumentStatusName;
50      }
51  
52      public void setFinancialDocumentStatusName(String financialDocumentStatusName) {
53          this.financialDocumentStatusName = financialDocumentStatusName;
54      }
55  
56      public String getDocumentTotalAmount() {
57          return documentTotalAmount;
58      }
59  
60      public void setDocumentTotalAmount(String documentTotalAmount) {
61          this.documentTotalAmount = documentTotalAmount;
62      }
63  
64      public String getSearchType() {
65          return searchType;
66      }
67  
68      public void setSearchType(String searchType) {
69          this.searchType = searchType;
70      }
71  
72      public String getNamespaceCode() {
73          return namespaceCode;
74      }
75  
76      public void setNamespaceCode(String changedNamespaceCodes) {
77          this.namespaceCode = changedNamespaceCodes;
78      }
79  
80      public String getDisplayType() {
81          return displayType;
82      }
83  
84      public void setDisplayType(String displayType) {
85          this.displayType = displayType;
86      }
87  
88      public String getRoutingAttributeTitle() {
89          return routingAttributeTitle;
90      }
91  
92      public void setRoutingAttributeTitle(String routingAttributeTitle) {
93          this.routingAttributeTitle = routingAttributeTitle;
94      }
95  
96      public Integer getTransactionEntrySequenceId() {
97          return transactionEntrySequenceId;
98      }
99  
100     public void setTransactionEntrySequenceId(Integer transactionEntrySequenceId) {
101         this.transactionEntrySequenceId = transactionEntrySequenceId;
102     }
103 
104     public Integer getSequenceNumber() {
105         return sequenceNumber;
106     }
107 
108     public void setSequenceNumber(Integer sequenceNumber) {
109         this.sequenceNumber = sequenceNumber;
110     }
111 
112     public Integer getItemSequenceId() {
113         return itemSequenceId;
114     }
115     
116     public void setItemSequenceId(Integer itemSequenceId) {
117         this.itemSequenceId = itemSequenceId;
118     }
119     
120     public Integer getTransactionLedgerEntrySequenceNumber() {
121         return transactionLedgerEntrySequenceNumber;
122     }
123     
124     public void setTransactionLedgerEntrySequenceNumber(Integer transactionLedgerEntrySequenceNumber) {
125         this.transactionLedgerEntrySequenceNumber = transactionLedgerEntrySequenceNumber;
126     }
127     
128     public String getUniversityFiscalAccountingPeriod() {
129         return universityFiscalAccountingPeriod;
130     }
131 
132     public void setUniversityFiscalAccountingPeriod(String universityFiscalAccountingPeriod) {
133         this.universityFiscalAccountingPeriod = universityFiscalAccountingPeriod;
134     }
135 
136     public Integer getGenericFiscalYear() {
137         return genericFiscalYear;
138     }
139 
140     public void setGenericFiscalYear(Integer genericFiscalYear) {
141         this.genericFiscalYear = genericFiscalYear;
142     }
143 
144     public String getMaxDollarAmount() {
145         return maxDollarAmount;
146     }
147 
148     public void setMaxDollarAmount(String maxDollarAmount) {
149         this.maxDollarAmount = maxDollarAmount;
150     }
151 
152     public String getMinDollarAmount() {
153         return minDollarAmount;
154     }
155 
156     public void setMinDollarAmount(String minDollarAmount) {
157         this.minDollarAmount = minDollarAmount;
158     }
159 
160     public String getTotalDollarAmount() {
161         return totalDollarAmount;
162     }
163 
164     public void setTotalDollarAmount(String totalDollarAmount) {
165         this.totalDollarAmount = totalDollarAmount;
166     }
167 
168     /**
169      * Gets the financialSystemDocumentTypeCode attribute. 
170      * @return Returns the financialSystemDocumentTypeCode.
171      */
172     public String getFinancialSystemDocumentTypeCode() {
173         return financialSystemDocumentTypeCode;
174     }
175 
176     /**
177      * Sets the financialSystemDocumentTypeCode attribute value.
178      * @param financialSystemDocumentTypeCode The financialSystemDocumentTypeCode to set.
179      */
180     public void setFinancialSystemDocumentTypeCode(String financialSystemDocumentTypeCode) {
181         this.financialSystemDocumentTypeCode = financialSystemDocumentTypeCode;
182     }
183 
184     /**
185      * Gets the referenceDocumentTypeCode attribute. 
186      * @return Returns the referenceDocumentTypeCode.
187      */
188     public String getReferenceTypeCode() {
189         return referenceTypeCode;
190     }
191 
192     /**
193      * Sets the referenceDocumentTypeCode attribute value.
194      * @param referenceDocumentTypeCode The referenceDocumentTypeCode to set.
195      */
196     public void setReferenceTypeCode(String referenceDocumentTypeCode) {
197         this.referenceTypeCode = referenceDocumentTypeCode;
198     }
199 }