001    /*
002     * Copyright 2011 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.kfs.integration.cg.dto;
017    
018    import java.io.Serializable;
019    import java.util.List;
020    
021    public class BudgetAdjustmentCreationStatusDTO implements Serializable {
022    
023        private static final long serialVersionUID = -3058053637490790154L;
024        
025        protected List<String> errorMessages;
026        protected String documentNumber;
027        protected String status;
028    
029        public BudgetAdjustmentCreationStatusDTO() {}
030    
031        /**
032         * Gets the errorCodes attribute. 
033         * @return Returns the errorCodes.
034         */
035        public List<String> getErrorMessages() {
036            return errorMessages;
037        }
038    
039        /**
040         * Sets the errorCodes attribute value.
041         * @param errorCodes The errorCodes to set.
042         */
043        public void setErrorMessages(List<String> errorMessages) {
044            this.errorMessages = errorMessages;
045        }
046    
047        /**
048         * Gets the documentNumber attribute. 
049         * @return Returns the documentNumber.
050         */
051        public String getDocumentNumber() {
052            return documentNumber;
053        }
054    
055        /**
056         * Sets the documentNumber attribute value.
057         * @param documentNumber The documentNumber to set.
058         */
059        public void setDocumentNumber(String documentNumber) {
060            this.documentNumber = documentNumber;
061        }
062    
063      /**
064         * Gets the status attribute. 
065         * @return Returns the status.
066         */
067        public String getStatus() {
068            return status;
069        }
070    
071        /**
072         * Sets the status attribute value.
073         * @param status The status to set.
074         */
075        public void setStatus(String status) {
076            this.status = status;
077        }
078    
079    
080    }