001    /**
002     * Copyright 2005-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.rice.krad.datadictionary.bos;
017    
018    import org.kuali.rice.krad.bo.KualiCodeBase;
019    
020    /**
021     * 
022     */
023    public class PaymentReasonCode extends KualiCodeBase {
024    
025        /**
026             * 
027             */
028            private static final long serialVersionUID = -8828220752451376168L;
029            private String description;
030            private String section2Field1;
031            private String section2Field2;
032    
033        public String getSection2Field1() {
034                    return section2Field1;
035            }
036    
037            public void setSection2Field1(String section2Field1) {
038                    this.section2Field1 = section2Field1;
039            }
040    
041            public String getSection2Field2() {
042                    return section2Field2;
043            }
044    
045            public void setSection2Field2(String section2Field2) {
046                    this.section2Field2 = section2Field2;
047            }
048    
049            /**
050         * Default no-arg constructor.
051         */
052        public PaymentReasonCode() {
053    
054        }
055    
056        /**
057         * @return Returns the description.
058         */
059        public String getDescription() {
060            return description;
061        }
062    
063    
064        /**
065         * @param description The description to set.
066         */
067        public void setDescription(String description) {
068            this.description = description;
069        }
070    }