Clover Coverage Report - KS Contract Documentation Generator 0.0.1-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
18   106   16   1.29
4   60   0.89   14
14     1.14  
1    
 
  ServiceMethod       Line # 25 18 0% 16 36 0% 0.0
 
No Tests
 
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    import java.util.ArrayList;
19    import java.util.List;
20   
21    /**
22    *
23    * @author nwright
24    */
 
25    public class ServiceMethod {
26   
27    private String service;
28   
 
29  0 toggle public String getService() {
30  0 return service;
31    }
32   
 
33  0 toggle public void setService(String service) {
34  0 this.service = service;
35    }
36    private String name;
37   
38    /**
39    * Get the value of name
40    *
41    * @return the value of name
42    */
 
43  0 toggle public String getName() {
44  0 return name;
45    }
46   
47    /**
48    * Set the value of name
49    *
50    * @param name new value of name
51    */
 
52  0 toggle public void setName(String name) {
53  0 this.name = name;
54    }
55    private String url;
56   
 
57  0 toggle public String getUrl() {
58  0 return url;
59    }
60   
 
61  0 toggle public void setUrl(String url) {
62  0 this.url = url;
63    }
64    private String description;
65   
 
66  0 toggle public String getDescription() {
67  0 return description;
68    }
69   
 
70  0 toggle public void setDescription(String description) {
71  0 this.description = description;
72    }
73    private List<ServiceMethodParameter> parameters;
74   
 
75  0 toggle public List<ServiceMethodParameter> getParameters() {
76  0 if (parameters == null) {
77  0 parameters = new ArrayList();
78    }
79  0 return parameters;
80    }
81   
 
82  0 toggle public void setParameters(List<ServiceMethodParameter> parameters) {
83  0 this.parameters = parameters;
84    }
85    private ServiceMethodReturnValue returnValue;
86   
 
87  0 toggle public ServiceMethodReturnValue getReturnValue() {
88  0 return returnValue;
89    }
90   
 
91  0 toggle public void setReturnValue(ServiceMethodReturnValue returnValue) {
92  0 this.returnValue = returnValue;
93    }
94    private List<ServiceMethodError> errors;
95   
 
96  0 toggle public List<ServiceMethodError> getErrors() {
97  0 if (errors == null) {
98  0 errors = new ArrayList();
99    }
100  0 return errors;
101    }
102   
 
103  0 toggle public void setErrors(List<ServiceMethodError> errors) {
104  0 this.errors = errors;
105    }
106    }