001    /*
002     * Copyright 2011 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 org.kuali.kfs.module.bc.util;
017    
018    /**
019     * hold the fields that are frequently used by budget expension or salary setting
020     */
021    public class SalarySettingFieldsHolder {
022    
023        private String documentNumber;
024        private String chartOfAccountsCode;
025        private String accountNumber;
026        private String subAccountNumber;
027        private String financialObjectCode;
028        private String financialSubObjectCode;
029        private String financialBalanceTypeCode;
030        private String financialObjectTypeCode;
031        private String positionNumber;
032        private String emplid;
033    
034        /**
035         * Gets the documentNumber attribute.
036         * 
037         * @return Returns the documentNumber.
038         */
039        public String getDocumentNumber() {
040            return documentNumber;
041        }
042    
043        /**
044         * Sets the documentNumber attribute value.
045         * 
046         * @param documentNumber The documentNumber to set.
047         */
048        public void setDocumentNumber(String documentNumber) {
049            this.documentNumber = documentNumber;
050        }
051    
052        /**
053         * Gets the chartOfAccountsCode attribute.
054         * 
055         * @return Returns the chartOfAccountsCode.
056         */
057        public String getChartOfAccountsCode() {
058            return chartOfAccountsCode;
059        }
060    
061        /**
062         * Sets the chartOfAccountsCode attribute value.
063         * 
064         * @param chartOfAccountsCode The chartOfAccountsCode to set.
065         */
066        public void setChartOfAccountsCode(String chartOfAccountsCode) {
067            this.chartOfAccountsCode = chartOfAccountsCode;
068        }
069    
070        /**
071         * Gets the accountNumber attribute.
072         * 
073         * @return Returns the accountNumber.
074         */
075        public String getAccountNumber() {
076            return accountNumber;
077        }
078    
079        /**
080         * Sets the accountNumber attribute value.
081         * 
082         * @param accountNumber The accountNumber to set.
083         */
084        public void setAccountNumber(String accountNumber) {
085            this.accountNumber = accountNumber;
086        }
087    
088        /**
089         * Gets the subAccountNumber attribute.
090         * 
091         * @return Returns the subAccountNumber.
092         */
093        public String getSubAccountNumber() {
094            return subAccountNumber;
095        }
096    
097        /**
098         * Sets the subAccountNumber attribute value.
099         * 
100         * @param subAccountNumber The subAccountNumber to set.
101         */
102        public void setSubAccountNumber(String subAccountNumber) {
103            this.subAccountNumber = subAccountNumber;
104        }
105    
106        /**
107         * Gets the financialObjectCode attribute.
108         * 
109         * @return Returns the financialObjectCode.
110         */
111        public String getFinancialObjectCode() {
112            return financialObjectCode;
113        }
114    
115        /**
116         * Sets the financialObjectCode attribute value.
117         * 
118         * @param financialObjectCode The financialObjectCode to set.
119         */
120        public void setFinancialObjectCode(String financialObjectCode) {
121            this.financialObjectCode = financialObjectCode;
122        }
123    
124        /**
125         * Gets the financialSubObjectCode attribute.
126         * 
127         * @return Returns the financialSubObjectCode.
128         */
129        public String getFinancialSubObjectCode() {
130            return financialSubObjectCode;
131        }
132    
133        /**
134         * Sets the financialSubObjectCode attribute value.
135         * 
136         * @param financialSubObjectCode The financialSubObjectCode to set.
137         */
138        public void setFinancialSubObjectCode(String financialSubObjectCode) {
139            this.financialSubObjectCode = financialSubObjectCode;
140        }
141    
142        /**
143         * Gets the financialBalanceTypeCode attribute.
144         * 
145         * @return Returns the financialBalanceTypeCode.
146         */
147        public String getFinancialBalanceTypeCode() {
148            return financialBalanceTypeCode;
149        }
150    
151        /**
152         * Sets the financialBalanceTypeCode attribute value.
153         * 
154         * @param financialBalanceTypeCode The financialBalanceTypeCode to set.
155         */
156        public void setFinancialBalanceTypeCode(String financialBalanceTypeCode) {
157            this.financialBalanceTypeCode = financialBalanceTypeCode;
158        }
159    
160        /**
161         * Gets the financialObjectTypeCode attribute.
162         * 
163         * @return Returns the financialObjectTypeCode.
164         */
165        public String getFinancialObjectTypeCode() {
166            return financialObjectTypeCode;
167        }
168    
169        /**
170         * Sets the financialObjectTypeCode attribute value.
171         * 
172         * @param financialObjectTypeCode The financialObjectTypeCode to set.
173         */
174        public void setFinancialObjectTypeCode(String financialObjectTypeCode) {
175            this.financialObjectTypeCode = financialObjectTypeCode;
176        }
177    
178        /**
179         * Gets the positionNumber attribute.
180         * 
181         * @return Returns the positionNumber.
182         */
183        public String getPositionNumber() {
184            return positionNumber;
185        }
186    
187        /**
188         * Sets the positionNumber attribute value.
189         * 
190         * @param positionNumber The positionNumber to set.
191         */
192        public void setPositionNumber(String positionNumber) {
193            this.positionNumber = positionNumber;
194        }
195    
196        /**
197         * Gets the emplid attribute.
198         * 
199         * @return Returns the emplid.
200         */
201        public String getEmplid() {
202            return emplid;
203        }
204    
205        /**
206         * Sets the emplid attribute value.
207         * 
208         * @param emplid The emplid to set.
209         */
210        public void setEmplid(String emplid) {
211            this.emplid = emplid;
212        }
213    }