View Javadoc

1   /**
2    * Copyright 2005-2013 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.rice.krad.datadictionary.validation;
17  
18  /**
19   *
20   * @author Kuali Rice Team (rice.collab@kuali.org)
21   */
22  public class Account {
23  
24  	private String accountId;
25  	private String bankName;
26  	private String totalBalance;
27  	private String creditBalance;
28  	private String debitBalance;
29  
30  
31  
32  	/**
33  	 * @param accountId
34  	 * @param bankName
35  	 * @param totalBalance
36  	 * @param creditBalance
37  	 * @param debitBalance
38  	 */
39  	public Account(String accountId, String bankName, String totalBalance, String creditBalance, String debitBalance) {
40  		this.accountId = accountId;
41  		this.bankName = bankName;
42  		this.totalBalance = totalBalance;
43  		this.creditBalance = creditBalance;
44  		this.debitBalance = debitBalance;
45  	}
46  	/**
47  	 * @return the accountId
48  	 */
49  	public String getAccountId() {
50  		return this.accountId;
51  	}
52  	/**
53  	 * @param accountId the accountId to set
54  	 */
55  	public void setAccountId(String accountId) {
56  		this.accountId = accountId;
57  	}
58  
59  	/**
60  	 * @return the bankName
61  	 */
62  	public String getBankName() {
63  		return this.bankName;
64  	}
65  	/**
66  	 * @param bankName the bankName to set
67  	 */
68  	public void setBankName(String bankName) {
69  		this.bankName = bankName;
70  	}
71  	/**
72  	 * @return the totalBalance
73  	 */
74  	public String getTotalBalance() {
75  		return this.totalBalance;
76  	}
77  	/**
78  	 * @param totalBalance the totalBalance to set
79  	 */
80  	public void setTotalBalance(String totalBalance) {
81  		this.totalBalance = totalBalance;
82  	}
83  	/**
84  	 * @return the creditBalance
85  	 */
86  	public String getCreditBalance() {
87  		return this.creditBalance;
88  	}
89  	/**
90  	 * @param creditBalance the creditBalance to set
91  	 */
92  	public void setCreditBalance(String creditBalance) {
93  		this.creditBalance = creditBalance;
94  	}
95  	/**
96  	 * @return the debitBalance
97  	 */
98  	public String getDebitBalance() {
99  		return this.debitBalance;
100 	}
101 	/**
102 	 * @param debitBalance the debitBalance to set
103 	 */
104 	public void setDebitBalance(String debitBalance) {
105 		this.debitBalance = debitBalance;
106 	}
107 
108 }