001    /**
002     * Copyright 2004-2014 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.student.contract.model;
017    
018    /**
019     *
020     * @author nwright
021     */
022    public class ServiceMethodRow {
023    
024        private int rowNumber;
025    
026        public int getRowNumber() {
027            return rowNumber;
028        }
029    
030        public void setRowNumber(int rowNumber) {
031            this.rowNumber = rowNumber;
032        }
033        private String service;
034    
035        public String getService() {
036            return service;
037        }
038    
039        public void setService(String service) {
040            this.service = service;
041        }
042        private String key;
043    
044        public String getKey() {
045            return key;
046        }
047    
048        public void setKey(String key) {
049            this.key = key;
050        }
051        private String shortName;
052    
053        public String getShortName() {
054            return shortName;
055        }
056    
057        public void setShortName(String shortName) {
058            this.shortName = shortName;
059        }
060        protected String longName;
061    
062        /**
063         * Get the value of longName
064         *
065         * @return the value of longName
066         */
067        public String getLongName() {
068            return longName;
069        }
070    
071        /**
072         * Set the value of longName
073         *
074         * @param longName new value of longName
075         */
076        public void setLongName(String longName) {
077            this.longName = longName;
078        }
079        private String description;
080    
081        public String getDescription() {
082            return description;
083        }
084    
085        public void setDescription(String description) {
086            this.description = description;
087        }
088    }