1   
2   
3   
4   
5   
6   
7   
8   
9   
10  
11  
12  
13  
14  
15  
16  package edu.sampleu.financial.bo;
17  
18  import org.kuali.rice.krad.bo.AttributeReferenceDummy;
19  
20  public class GenericAttributes extends AttributeReferenceDummy {
21  
22      private String namespaceCode;
23      private String searchType;
24      private String displayType;
25      private String documentTotalAmount;
26      private String routingAttributeTitle;
27  
28      private Integer transactionEntrySequenceId;
29      private Integer sequenceNumber;
30      private Integer itemSequenceId;
31      private Integer transactionLedgerEntrySequenceNumber;
32      private String universityFiscalAccountingPeriod;
33      private Integer genericFiscalYear;
34      private String maxDollarAmount;
35      private String minDollarAmount;
36      private String totalDollarAmount;
37      private String financialDocumentStatusName;
38      private String financialSystemDocumentTypeCode;
39      private String referenceTypeCode;
40  
41      public GenericAttributes() {
42          super();
43      }
44  
45      public String getFinancialDocumentStatusName() {
46          return financialDocumentStatusName;
47      }
48  
49      public void setFinancialDocumentStatusName(String financialDocumentStatusName) {
50          this.financialDocumentStatusName = financialDocumentStatusName;
51      }
52  
53      public String getDocumentTotalAmount() {
54          return documentTotalAmount;
55      }
56  
57      public void setDocumentTotalAmount(String documentTotalAmount) {
58          this.documentTotalAmount = documentTotalAmount;
59      }
60  
61      public String getSearchType() {
62          return searchType;
63      }
64  
65      public void setSearchType(String searchType) {
66          this.searchType = searchType;
67      }
68  
69      public String getNamespaceCode() {
70          return namespaceCode;
71      }
72  
73      public void setNamespaceCode(String changedNamespaceCodes) {
74          this.namespaceCode = changedNamespaceCodes;
75      }
76  
77      public String getDisplayType() {
78          return displayType;
79      }
80  
81      public void setDisplayType(String displayType) {
82          this.displayType = displayType;
83      }
84  
85      public String getRoutingAttributeTitle() {
86          return routingAttributeTitle;
87      }
88  
89      public void setRoutingAttributeTitle(String routingAttributeTitle) {
90          this.routingAttributeTitle = routingAttributeTitle;
91      }
92  
93      public Integer getTransactionEntrySequenceId() {
94          return transactionEntrySequenceId;
95      }
96  
97      public void setTransactionEntrySequenceId(Integer transactionEntrySequenceId) {
98          this.transactionEntrySequenceId = transactionEntrySequenceId;
99      }
100 
101     public Integer getSequenceNumber() {
102         return sequenceNumber;
103     }
104 
105     public void setSequenceNumber(Integer sequenceNumber) {
106         this.sequenceNumber = sequenceNumber;
107     }
108 
109     public Integer getItemSequenceId() {
110         return itemSequenceId;
111     }
112     
113     public void setItemSequenceId(Integer itemSequenceId) {
114         this.itemSequenceId = itemSequenceId;
115     }
116     
117     public Integer getTransactionLedgerEntrySequenceNumber() {
118         return transactionLedgerEntrySequenceNumber;
119     }
120     
121     public void setTransactionLedgerEntrySequenceNumber(Integer transactionLedgerEntrySequenceNumber) {
122         this.transactionLedgerEntrySequenceNumber = transactionLedgerEntrySequenceNumber;
123     }
124     
125     public String getUniversityFiscalAccountingPeriod() {
126         return universityFiscalAccountingPeriod;
127     }
128 
129     public void setUniversityFiscalAccountingPeriod(String universityFiscalAccountingPeriod) {
130         this.universityFiscalAccountingPeriod = universityFiscalAccountingPeriod;
131     }
132 
133     public Integer getGenericFiscalYear() {
134         return genericFiscalYear;
135     }
136 
137     public void setGenericFiscalYear(Integer genericFiscalYear) {
138         this.genericFiscalYear = genericFiscalYear;
139     }
140 
141     public String getMaxDollarAmount() {
142         return maxDollarAmount;
143     }
144 
145     public void setMaxDollarAmount(String maxDollarAmount) {
146         this.maxDollarAmount = maxDollarAmount;
147     }
148 
149     public String getMinDollarAmount() {
150         return minDollarAmount;
151     }
152 
153     public void setMinDollarAmount(String minDollarAmount) {
154         this.minDollarAmount = minDollarAmount;
155     }
156 
157     public String getTotalDollarAmount() {
158         return totalDollarAmount;
159     }
160 
161     public void setTotalDollarAmount(String totalDollarAmount) {
162         this.totalDollarAmount = totalDollarAmount;
163     }
164 
165     
166 
167 
168 
169     public String getFinancialSystemDocumentTypeCode() {
170         return financialSystemDocumentTypeCode;
171     }
172 
173     
174 
175 
176 
177     public void setFinancialSystemDocumentTypeCode(String financialSystemDocumentTypeCode) {
178         this.financialSystemDocumentTypeCode = financialSystemDocumentTypeCode;
179     }
180 
181     
182 
183 
184 
185     public String getReferenceTypeCode() {
186         return referenceTypeCode;
187     }
188 
189     
190 
191 
192 
193     public void setReferenceTypeCode(String referenceDocumentTypeCode) {
194         this.referenceTypeCode = referenceDocumentTypeCode;
195     }
196 }