View Javadoc

1   /*
2    * Copyright 2010 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.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.osedu.org/licenses/ECL-2.0
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.student.contract.model;
17  
18  /**
19   *
20   * @author nwright
21   */
22  public class ServiceMethodRow {
23  
24      private int rowNumber;
25  
26      public int getRowNumber() {
27          return rowNumber;
28      }
29  
30      public void setRowNumber(int rowNumber) {
31          this.rowNumber = rowNumber;
32      }
33      private String service;
34  
35      public String getService() {
36          return service;
37      }
38  
39      public void setService(String service) {
40          this.service = service;
41      }
42      private String key;
43  
44      public String getKey() {
45          return key;
46      }
47  
48      public void setKey(String key) {
49          this.key = key;
50      }
51      private String shortName;
52  
53      public String getShortName() {
54          return shortName;
55      }
56  
57      public void setShortName(String shortName) {
58          this.shortName = shortName;
59      }
60      protected String longName;
61  
62      /**
63       * Get the value of longName
64       *
65       * @return the value of longName
66       */
67      public String getLongName() {
68          return longName;
69      }
70  
71      /**
72       * Set the value of longName
73       *
74       * @param longName new value of longName
75       */
76      public void setLongName(String longName) {
77          this.longName = longName;
78      }
79      private String description;
80  
81      public String getDescription() {
82          return description;
83      }
84  
85      public void setDescription(String description) {
86          this.description = description;
87      }
88  }