Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ServiceMethodRow |
|
| 1.0;1 |
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 | 0 | public class ServiceMethodRow { |
23 | ||
24 | private int rowNumber; | |
25 | ||
26 | public int getRowNumber() { | |
27 | 0 | return rowNumber; |
28 | } | |
29 | ||
30 | public void setRowNumber(int rowNumber) { | |
31 | 0 | this.rowNumber = rowNumber; |
32 | 0 | } |
33 | private String service; | |
34 | ||
35 | public String getService() { | |
36 | 0 | return service; |
37 | } | |
38 | ||
39 | public void setService(String service) { | |
40 | 0 | this.service = service; |
41 | 0 | } |
42 | private String key; | |
43 | ||
44 | public String getKey() { | |
45 | 0 | return key; |
46 | } | |
47 | ||
48 | public void setKey(String key) { | |
49 | 0 | this.key = key; |
50 | 0 | } |
51 | private String shortName; | |
52 | ||
53 | public String getShortName() { | |
54 | 0 | return shortName; |
55 | } | |
56 | ||
57 | public void setShortName(String shortName) { | |
58 | 0 | this.shortName = shortName; |
59 | 0 | } |
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 | 0 | 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 | 0 | this.longName = longName; |
78 | 0 | } |
79 | private String description; | |
80 | ||
81 | public String getDescription() { | |
82 | 0 | return description; |
83 | } | |
84 | ||
85 | public void setDescription(String description) { | |
86 | 0 | this.description = description; |
87 | 0 | } |
88 | } |