001 /* 002 * Copyright 2007-2008 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 package edu.sampleu.financial.bo; 017 018 import org.kuali.rice.kns.bo.AttributeReferenceDummy; 019 020 public class GenericAttributes extends AttributeReferenceDummy { 021 022 private String namespaceCode; 023 private String searchType; 024 private String displayType; 025 private String documentTotalAmount; 026 private String routingAttributeTitle; 027 028 private Integer transactionEntrySequenceId; 029 private Integer sequenceNumber; 030 private Integer itemSequenceId; 031 private Integer transactionLedgerEntrySequenceNumber; 032 private String universityFiscalAccountingPeriod; 033 private Integer genericFiscalYear; 034 private String maxDollarAmount; 035 private String minDollarAmount; 036 private String totalDollarAmount; 037 private String financialDocumentStatusName; 038 private String financialSystemDocumentTypeCode; 039 private String referenceTypeCode; 040 041 public GenericAttributes() { 042 super(); 043 } 044 045 public String getFinancialDocumentStatusName() { 046 return financialDocumentStatusName; 047 } 048 049 public void setFinancialDocumentStatusName(String financialDocumentStatusName) { 050 this.financialDocumentStatusName = financialDocumentStatusName; 051 } 052 053 public String getDocumentTotalAmount() { 054 return documentTotalAmount; 055 } 056 057 public void setDocumentTotalAmount(String documentTotalAmount) { 058 this.documentTotalAmount = documentTotalAmount; 059 } 060 061 public String getSearchType() { 062 return searchType; 063 } 064 065 public void setSearchType(String searchType) { 066 this.searchType = searchType; 067 } 068 069 public String getNamespaceCode() { 070 return namespaceCode; 071 } 072 073 public void setNamespaceCode(String changedNamespaceCodes) { 074 this.namespaceCode = changedNamespaceCodes; 075 } 076 077 public String getDisplayType() { 078 return displayType; 079 } 080 081 public void setDisplayType(String displayType) { 082 this.displayType = displayType; 083 } 084 085 public String getRoutingAttributeTitle() { 086 return routingAttributeTitle; 087 } 088 089 public void setRoutingAttributeTitle(String routingAttributeTitle) { 090 this.routingAttributeTitle = routingAttributeTitle; 091 } 092 093 public Integer getTransactionEntrySequenceId() { 094 return transactionEntrySequenceId; 095 } 096 097 public void setTransactionEntrySequenceId(Integer transactionEntrySequenceId) { 098 this.transactionEntrySequenceId = transactionEntrySequenceId; 099 } 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 * Gets the financialSystemDocumentTypeCode attribute. 167 * @return Returns the financialSystemDocumentTypeCode. 168 */ 169 public String getFinancialSystemDocumentTypeCode() { 170 return financialSystemDocumentTypeCode; 171 } 172 173 /** 174 * Sets the financialSystemDocumentTypeCode attribute value. 175 * @param financialSystemDocumentTypeCode The financialSystemDocumentTypeCode to set. 176 */ 177 public void setFinancialSystemDocumentTypeCode(String financialSystemDocumentTypeCode) { 178 this.financialSystemDocumentTypeCode = financialSystemDocumentTypeCode; 179 } 180 181 /** 182 * Gets the referenceDocumentTypeCode attribute. 183 * @return Returns the referenceDocumentTypeCode. 184 */ 185 public String getReferenceTypeCode() { 186 return referenceTypeCode; 187 } 188 189 /** 190 * Sets the referenceDocumentTypeCode attribute value. 191 * @param referenceDocumentTypeCode The referenceDocumentTypeCode to set. 192 */ 193 public void setReferenceTypeCode(String referenceDocumentTypeCode) { 194 this.referenceTypeCode = referenceDocumentTypeCode; 195 } 196 }