1 /*
2 * Copyright 2010 The Kuali Foundation.
3 *
4 * Licensed under the Educational Community License, Version 1.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/ecl1.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.ole.integration.cg.dto;
17
18 import java.io.Serializable;
19 import java.util.List;
20
21 public class AccountCreationStatusDTO implements Serializable {
22
23 private static final long serialVersionUID = -3058053637490790154L;
24
25 protected List<String> errorMessages;
26 protected String documentNumber;
27 protected String accountNumber;
28 protected String chartOfAccountsCode;
29 protected String status;
30
31 public AccountCreationStatusDTO() {}
32
33 /**
34 * Gets the errorCodes attribute.
35 * @return Returns the errorCodes.
36 */
37 public List<String> getErrorMessages() {
38 return errorMessages;
39 }
40
41 /**
42 * Sets the errorCodes attribute value.
43 * @param errorCodes The errorCodes to set.
44 */
45 public void setErrorMessages(List<String> errorMessages) {
46 this.errorMessages = errorMessages;
47 }
48
49 /**
50 * Gets the documentNumber attribute.
51 * @return Returns the documentNumber.
52 */
53 public String getDocumentNumber() {
54 return documentNumber;
55 }
56
57 /**
58 * Sets the documentNumber attribute value.
59 * @param documentNumber The documentNumber to set.
60 */
61 public void setDocumentNumber(String documentNumber) {
62 this.documentNumber = documentNumber;
63 }
64
65 /**
66 * Gets the accountNumber attribute.
67 * @return Returns the accountNumber.
68 */
69 public String getAccountNumber() {
70 return accountNumber;
71 }
72
73 /**
74 * Sets the accountNumber attribute value.
75 * @param accountNumber The accountNumber to set.
76 */
77 public void setAccountNumber(String accountNumber) {
78 this.accountNumber = accountNumber;
79 }
80
81 /**
82 * Gets the chartOfAccountsCode attribute.
83 * @return Returns the chartOfAccountsCode.
84 */
85 public String getChartOfAccountsCode() {
86 return chartOfAccountsCode;
87 }
88
89 /**
90 * Sets the chartOfAccountsCode attribute value.
91 * @param chartOfAccountsCode The chartOfAccountsCode to set.
92 */
93 public void setChartOfAccountsCode(String chartOfAccountsCode) {
94 this.chartOfAccountsCode = chartOfAccountsCode;
95 }
96
97 /**
98 * Gets the status attribute.
99 * @return Returns the status.
100 */
101 public String getStatus() {
102 return status;
103 }
104
105 /**
106 * Sets the status attribute value.
107 * @param status The status to set.
108 */
109 public void setStatus(String status) {
110 this.status = status;
111 }
112
113
114 }