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
16   107   16   1
0   60   1   16
16     1  
1    
 
  Service       Line # 24 16 0% 16 32 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.List;
19   
20    /**
21    *
22    * @author nwright
23    */
 
24    public class Service {
25   
26    private String key;
27   
 
28  0 toggle public String getKey() {
29  0 return key;
30    }
31   
 
32  0 toggle public void setKey(String key) {
33  0 this.key = key;
34    }
35    private String name;
36   
 
37  0 toggle public String getName() {
38  0 return name;
39    }
40   
 
41  0 toggle public void setName(String name) {
42  0 this.name = name;
43    }
44    private String implProject;
45   
 
46  0 toggle public String getImplProject() {
47  0 return implProject;
48    }
49   
 
50  0 toggle public void setImplProject(String implProject) {
51  0 this.implProject = implProject;
52    }
53    private String status;
54   
 
55  0 toggle public String getStatus() {
56  0 return status;
57    }
58   
 
59  0 toggle public void setStatus(String status) {
60  0 this.status = status;
61    }
62    private String comments;
63   
 
64  0 toggle public String getComments() {
65  0 return comments;
66    }
67   
 
68  0 toggle public void setComments(String comments) {
69  0 this.comments = comments;
70    }
71    private String version;
72   
 
73  0 toggle public String getVersion() {
74  0 return version;
75    }
76   
 
77  0 toggle public void setVersion(String version) {
78  0 this.version = version;
79    }
80    private String url;
81   
 
82  0 toggle public String getUrl() {
83  0 return url;
84    }
85   
 
86  0 toggle public void setUrl(String url) {
87  0 this.url = url;
88    }
89    private List<String> includedServices;
90   
91    /**
92    * Comma separated list of services that are included
93    *
94    * @return
95    */
 
96  0 toggle public List<String> getIncludedServices() {
97  0 return includedServices;
98    }
99   
100    /**
101    * comma separated list of services that are included
102    * @param includedServices
103    */
 
104  0 toggle public void setIncludedServices(List<String> includedServices) {
105  0 this.includedServices = includedServices;
106    }
107    }