View Javadoc
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 BudgetAdjustmentCreationStatusDTO implements Serializable {
22  
23      private static final long serialVersionUID = -3058053637490790154L;
24      
25      protected List<String> errorMessages;
26      protected String documentNumber;
27      protected String status;
28  
29      public BudgetAdjustmentCreationStatusDTO() {}
30  
31      /**
32       * Gets the errorCodes attribute. 
33       * @return Returns the errorCodes.
34       */
35      public List<String> getErrorMessages() {
36          return errorMessages;
37      }
38  
39      /**
40       * Sets the errorCodes attribute value.
41       * @param errorCodes The errorCodes to set.
42       */
43      public void setErrorMessages(List<String> errorMessages) {
44          this.errorMessages = errorMessages;
45      }
46  
47      /**
48       * Gets the documentNumber attribute. 
49       * @return Returns the documentNumber.
50       */
51      public String getDocumentNumber() {
52          return documentNumber;
53      }
54  
55      /**
56       * Sets the documentNumber attribute value.
57       * @param documentNumber The documentNumber to set.
58       */
59      public void setDocumentNumber(String documentNumber) {
60          this.documentNumber = documentNumber;
61      }
62  
63    /**
64       * Gets the status attribute. 
65       * @return Returns the status.
66       */
67      public String getStatus() {
68          return status;
69      }
70  
71      /**
72       * Sets the status attribute value.
73       * @param status The status to set.
74       */
75      public void setStatus(String status) {
76          this.status = status;
77      }
78  
79  
80  }