Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ServiceMethodParameter |
|
| 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 ServiceMethodParameter |
23 | { | |
24 | ||
25 | private String name; | |
26 | ||
27 | /** | |
28 | * Get the value of name | |
29 | * | |
30 | * @return the value of name | |
31 | */ | |
32 | public String getName () | |
33 | { | |
34 | 0 | return name; |
35 | } | |
36 | ||
37 | /** | |
38 | * Set the value of name | |
39 | * | |
40 | * @param name new value of name | |
41 | */ | |
42 | public void setName (String name) | |
43 | { | |
44 | 0 | this.name = name; |
45 | 0 | } |
46 | ||
47 | protected String type; | |
48 | ||
49 | public String getType () | |
50 | { | |
51 | 0 | return type; |
52 | } | |
53 | ||
54 | public void setType (String type) | |
55 | { | |
56 | 0 | this.type = type; |
57 | 0 | } |
58 | ||
59 | ||
60 | private String description; | |
61 | ||
62 | public String getDescription () | |
63 | { | |
64 | 0 | return description; |
65 | } | |
66 | ||
67 | public void setDescription (String description) | |
68 | { | |
69 | 0 | this.description = description; |
70 | 0 | } |
71 | ||
72 | private String url; | |
73 | ||
74 | public String getUrl () | |
75 | { | |
76 | 0 | return url; |
77 | } | |
78 | ||
79 | public void setUrl (String url) | |
80 | { | |
81 | 0 | this.url = url; |
82 | 0 | } |
83 | ||
84 | } |