1 /* 2 * The Kuali Financial System, a comprehensive financial management system for higher education. 3 * 4 * Copyright 2005-2014 The Kuali Foundation 5 * 6 * This program is free software: you can redistribute it and/or modify 7 * it under the terms of the GNU Affero General Public License as 8 * published by the Free Software Foundation, either version 3 of the 9 * License, or (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU Affero General Public License for more details. 15 * 16 * You should have received a copy of the GNU Affero General Public License 17 * along with this program. If not, see <http://www.gnu.org/licenses/>. 18 */ 19 package org.kuali.kfs.integration.cg.dto; 20 21 import java.io.Serializable; 22 import java.util.List; 23 24 public class AccountCreationStatusDTO implements Serializable { 25 26 private static final long serialVersionUID = -3058053637490790154L; 27 28 protected List<String> errorMessages; 29 protected String documentNumber; 30 protected String accountNumber; 31 protected String chartOfAccountsCode; 32 protected String status; 33 34 public AccountCreationStatusDTO() {} 35 36 /** 37 * Gets the errorCodes attribute. 38 * @return Returns the errorCodes. 39 */ 40 public List<String> getErrorMessages() { 41 return errorMessages; 42 } 43 44 /** 45 * Sets the errorCodes attribute value. 46 * @param errorCodes The errorCodes to set. 47 */ 48 public void setErrorMessages(List<String> errorMessages) { 49 this.errorMessages = errorMessages; 50 } 51 52 /** 53 * Gets the documentNumber attribute. 54 * @return Returns the documentNumber. 55 */ 56 public String getDocumentNumber() { 57 return documentNumber; 58 } 59 60 /** 61 * Sets the documentNumber attribute value. 62 * @param documentNumber The documentNumber to set. 63 */ 64 public void setDocumentNumber(String documentNumber) { 65 this.documentNumber = documentNumber; 66 } 67 68 /** 69 * Gets the accountNumber attribute. 70 * @return Returns the accountNumber. 71 */ 72 public String getAccountNumber() { 73 return accountNumber; 74 } 75 76 /** 77 * Sets the accountNumber attribute value. 78 * @param accountNumber The accountNumber to set. 79 */ 80 public void setAccountNumber(String accountNumber) { 81 this.accountNumber = accountNumber; 82 } 83 84 /** 85 * Gets the chartOfAccountsCode attribute. 86 * @return Returns the chartOfAccountsCode. 87 */ 88 public String getChartOfAccountsCode() { 89 return chartOfAccountsCode; 90 } 91 92 /** 93 * Sets the chartOfAccountsCode attribute value. 94 * @param chartOfAccountsCode The chartOfAccountsCode to set. 95 */ 96 public void setChartOfAccountsCode(String chartOfAccountsCode) { 97 this.chartOfAccountsCode = chartOfAccountsCode; 98 } 99 100 /** 101 * Gets the status attribute. 102 * @return Returns the status. 103 */ 104 public String getStatus() { 105 return status; 106 } 107 108 /** 109 * Sets the status attribute value. 110 * @param status The status to set. 111 */ 112 public void setStatus(String status) { 113 this.status = status; 114 } 115 116 117 }