Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ServiceMethodReturnValue |
|
| 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 ServiceMethodReturnValue { |
23 | ||
24 | protected String type; | |
25 | ||
26 | public String getType() { | |
27 | 0 | return type; |
28 | } | |
29 | ||
30 | public void setType(String type) { | |
31 | 0 | this.type = type; |
32 | 0 | } |
33 | private String description; | |
34 | ||
35 | public String getDescription() { | |
36 | 0 | return description; |
37 | } | |
38 | ||
39 | public void setDescription(String description) { | |
40 | 0 | this.description = description; |
41 | 0 | } |
42 | private String url; | |
43 | ||
44 | public String getUrl() { | |
45 | 0 | return url; |
46 | } | |
47 | ||
48 | public void setUrl(String url) { | |
49 | 0 | this.url = url; |
50 | 0 | } |
51 | } |