001 /** 002 * Copyright 2005-2012 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.rice.krad.datadictionary.validation; 017 018 /** 019 * 020 * @author Kuali Rice Team (rice.collab@kuali.org) 021 */ 022 public class Account { 023 024 private String accountId; 025 private String bankName; 026 private String totalBalance; 027 private String creditBalance; 028 private String debitBalance; 029 030 031 032 /** 033 * @param accountId 034 * @param bankName 035 * @param totalBalance 036 * @param creditBalanace 037 * @param debitBalance 038 */ 039 public Account(String accountId, String bankName, String totalBalance, String creditBalance, String debitBalance) { 040 this.accountId = accountId; 041 this.bankName = bankName; 042 this.totalBalance = totalBalance; 043 this.creditBalance = creditBalance; 044 this.debitBalance = debitBalance; 045 } 046 /** 047 * @return the accountId 048 */ 049 public String getAccountId() { 050 return this.accountId; 051 } 052 /** 053 * @param accountId the accountId to set 054 */ 055 public void setAccountId(String accountId) { 056 this.accountId = accountId; 057 } 058 059 /** 060 * @return the bankName 061 */ 062 public String getBankName() { 063 return this.bankName; 064 } 065 /** 066 * @param bankName the bankName to set 067 */ 068 public void setBankName(String bankName) { 069 this.bankName = bankName; 070 } 071 /** 072 * @return the totalBalance 073 */ 074 public String getTotalBalance() { 075 return this.totalBalance; 076 } 077 /** 078 * @param totalBalance the totalBalance to set 079 */ 080 public void setTotalBalance(String totalBalance) { 081 this.totalBalance = totalBalance; 082 } 083 /** 084 * @return the creditBalance 085 */ 086 public String getCreditBalance() { 087 return this.creditBalance; 088 } 089 /** 090 * @param creditBalance the creditBalance to set 091 */ 092 public void setCreditBalance(String creditBalance) { 093 this.creditBalance = creditBalance; 094 } 095 /** 096 * @return the debitBalance 097 */ 098 public String getDebitBalance() { 099 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 }