001/* 002 * Copyright 2007 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 */ 016package org.kuali.ole.module.purap.util; 017 018/** 019 * Expired or Closed Account 020 */ 021public class ExpiredOrClosedAccount { 022 023 private String chartOfAccountsCode; 024 private String accountNumber; 025 private String subAccountNumber; 026 private boolean closedIndicator; 027 private boolean expiredIndicator; 028 private boolean continuationAccountMissing; 029 030 /** 031 * Default constructor 032 */ 033 public ExpiredOrClosedAccount() { 034 } 035 036 /** 037 * Constructs an Expired Or Closed Account consisting of the following attributes. 038 * 039 * @param chartOfAccountsCode chart 040 * @param accountNumber account 041 * @param subAccountNumber subAccount 042 */ 043 public ExpiredOrClosedAccount(String chartOfAccountsCode, String accountNumber, String subAccountNumber) { 044 setChartOfAccountsCode(chartOfAccountsCode); 045 setAccountNumber(accountNumber); 046 setSubAccountNumber(subAccountNumber); 047 } 048 049 public String getAccountNumber() { 050 return accountNumber; 051 } 052 053 public void setAccountNumber(String accountNumber) { 054 this.accountNumber = accountNumber; 055 } 056 057 public String getChartOfAccountsCode() { 058 return chartOfAccountsCode; 059 } 060 061 public void setChartOfAccountsCode(String chartOfAccountsCode) { 062 this.chartOfAccountsCode = chartOfAccountsCode; 063 } 064 065 public boolean isClosedIndicator() { 066 return closedIndicator; 067 } 068 069 public void setClosedIndicator(boolean closedIndicator) { 070 this.closedIndicator = closedIndicator; 071 } 072 073 public boolean isContinuationAccountMissing() { 074 return continuationAccountMissing; 075 } 076 077 public void setContinuationAccountMissing(boolean continuationAccountMissing) { 078 this.continuationAccountMissing = continuationAccountMissing; 079 } 080 081 public boolean isExpiredIndicator() { 082 return expiredIndicator; 083 } 084 085 public void setExpiredIndicator(boolean expiredIndicator) { 086 this.expiredIndicator = expiredIndicator; 087 } 088 089 public String getSubAccountNumber() { 090 return subAccountNumber; 091 } 092 093 public void setSubAccountNumber(String subAccountNumber) { 094 this.subAccountNumber = subAccountNumber; 095 } 096 097 /** 098 * This is a helper method to return the account as a string in the format chart-account-subaccount. 099 * 100 * @return account string representation 101 */ 102 public String getAccountString() { 103 StringBuffer accountStr = new StringBuffer(""); 104 105 if (getChartOfAccountsCode() != null) { 106 accountStr.append(getChartOfAccountsCode()); 107 } 108 109 if (getAccountNumber() != null) { 110 accountStr.append("-"); 111 accountStr.append(getAccountNumber()); 112 } 113 114 if (getSubAccountNumber() != null) { 115 accountStr.append("-"); 116 accountStr.append(getSubAccountNumber()); 117 } 118 119 return accountStr.toString(); 120 } 121}