1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.contract.model; |
17 | |
|
18 | |
import java.util.List; |
19 | |
|
20 | |
|
21 | |
|
22 | |
|
23 | |
|
24 | 0 | public class Service { |
25 | |
|
26 | |
private String key; |
27 | |
|
28 | |
public String getKey() { |
29 | 0 | return key; |
30 | |
} |
31 | |
|
32 | |
public void setKey(String key) { |
33 | 0 | this.key = key; |
34 | 0 | } |
35 | |
private String name; |
36 | |
|
37 | |
public String getName() { |
38 | 0 | return name; |
39 | |
} |
40 | |
|
41 | |
public void setName(String name) { |
42 | 0 | this.name = name; |
43 | 0 | } |
44 | |
private String implProject; |
45 | |
|
46 | |
public String getImplProject() { |
47 | 0 | return implProject; |
48 | |
} |
49 | |
|
50 | |
public void setImplProject(String implProject) { |
51 | 0 | this.implProject = implProject; |
52 | 0 | } |
53 | |
private String status; |
54 | |
|
55 | |
public String getStatus() { |
56 | 0 | return status; |
57 | |
} |
58 | |
|
59 | |
public void setStatus(String status) { |
60 | 0 | this.status = status; |
61 | 0 | } |
62 | |
private String comments; |
63 | |
|
64 | |
public String getComments() { |
65 | 0 | return comments; |
66 | |
} |
67 | |
|
68 | |
public void setComments(String comments) { |
69 | 0 | this.comments = comments; |
70 | 0 | } |
71 | |
private String version; |
72 | |
|
73 | |
public String getVersion() { |
74 | 0 | return version; |
75 | |
} |
76 | |
|
77 | |
public void setVersion(String version) { |
78 | 0 | this.version = version; |
79 | 0 | } |
80 | |
private String url; |
81 | |
|
82 | |
public String getUrl() { |
83 | 0 | return url; |
84 | |
} |
85 | |
|
86 | |
public void setUrl(String url) { |
87 | 0 | this.url = url; |
88 | 0 | } |
89 | |
private List<String> includedServices; |
90 | |
|
91 | |
|
92 | |
|
93 | |
|
94 | |
|
95 | |
|
96 | |
public List<String> getIncludedServices() { |
97 | 0 | return includedServices; |
98 | |
} |
99 | |
|
100 | |
|
101 | |
|
102 | |
|
103 | |
|
104 | |
public void setIncludedServices(List<String> includedServices) { |
105 | 0 | this.includedServices = includedServices; |
106 | 0 | } |
107 | |
} |