1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.lum.course.dto; |
17 |
|
|
18 |
|
import java.io.Serializable; |
19 |
|
import java.util.ArrayList; |
20 |
|
import java.util.HashMap; |
21 |
|
import java.util.List; |
22 |
|
import java.util.Map; |
23 |
|
|
24 |
|
import javax.xml.bind.annotation.XmlAccessType; |
25 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
26 |
|
import javax.xml.bind.annotation.XmlAttribute; |
27 |
|
import javax.xml.bind.annotation.XmlElement; |
28 |
|
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; |
29 |
|
|
30 |
|
import org.kuali.student.common.dto.HasAttributes; |
31 |
|
import org.kuali.student.common.dto.HasTypeState; |
32 |
|
import org.kuali.student.common.dto.Idable; |
33 |
|
import org.kuali.student.common.dto.MetaInfo; |
34 |
|
import org.kuali.student.common.dto.TimeAmountInfo; |
35 |
|
import org.kuali.student.core.ws.binding.JaxbAttributeMapListAdapter; |
36 |
|
|
37 |
|
|
38 |
|
|
39 |
|
|
40 |
|
|
41 |
|
|
42 |
|
|
43 |
|
|
44 |
|
|
45 |
|
|
46 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
| 100% |
Uncovered Elements: 0 (40) |
Complexity: 18 |
Complexity Density: 0.9 |
|
47 |
|
public class FormatInfo implements Serializable, Idable, HasTypeState, HasAttributes { |
48 |
|
|
49 |
|
private static final long serialVersionUID = 1L; |
50 |
|
|
51 |
|
@XmlElement |
52 |
|
private List<ActivityInfo> activities; |
53 |
|
|
54 |
|
@XmlElement |
55 |
|
private List<String> termsOffered; |
56 |
|
|
57 |
|
@XmlElement |
58 |
|
private TimeAmountInfo duration; |
59 |
|
|
60 |
|
@XmlElement |
61 |
|
@XmlJavaTypeAdapter(JaxbAttributeMapListAdapter.class) |
62 |
|
private Map<String, String> attributes; |
63 |
|
|
64 |
|
@XmlElement |
65 |
|
private MetaInfo metaInfo; |
66 |
|
|
67 |
|
@XmlAttribute |
68 |
|
private String type; |
69 |
|
|
70 |
|
@XmlAttribute |
71 |
|
private String state; |
72 |
|
|
73 |
|
@XmlAttribute |
74 |
|
private String id; |
75 |
|
|
76 |
|
|
77 |
|
|
78 |
|
|
79 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
80 |
147
|
public List<ActivityInfo> getActivities() {... |
81 |
147
|
if (activities == null) { |
82 |
32
|
activities = new ArrayList<ActivityInfo>(0); |
83 |
|
} |
84 |
147
|
return activities; |
85 |
|
} |
86 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
87 |
33
|
public void setActivities(List<ActivityInfo> activities) {... |
88 |
33
|
this.activities = activities; |
89 |
|
} |
90 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
91 |
66
|
public List<String> getTermsOffered() {... |
92 |
66
|
return termsOffered; |
93 |
|
} |
94 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
95 |
109
|
public void setTermsOffered(List<String> termsOffered) {... |
96 |
109
|
this.termsOffered = termsOffered; |
97 |
|
} |
98 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
99 |
65
|
public TimeAmountInfo getDuration() {... |
100 |
65
|
return duration; |
101 |
|
} |
102 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
103 |
109
|
public void setDuration(TimeAmountInfo duration) {... |
104 |
109
|
this.duration = duration; |
105 |
|
} |
106 |
|
|
107 |
|
|
108 |
|
|
109 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
110 |
67
|
public Map<String, String> getAttributes() {... |
111 |
67
|
if (attributes == null) { |
112 |
2
|
attributes = new HashMap<String, String>(); |
113 |
|
} |
114 |
67
|
return attributes; |
115 |
|
} |
116 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
117 |
109
|
public void setAttributes(Map<String, String> attributes) {... |
118 |
109
|
this.attributes = attributes; |
119 |
|
} |
120 |
|
|
121 |
|
|
122 |
|
|
123 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
124 |
64
|
public MetaInfo getMetaInfo() {... |
125 |
64
|
return metaInfo; |
126 |
|
} |
127 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
128 |
76
|
public void setMetaInfo(MetaInfo metaInfo) {... |
129 |
76
|
this.metaInfo = metaInfo; |
130 |
|
} |
131 |
|
|
132 |
|
|
133 |
|
|
134 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
135 |
13
|
public String getType() {... |
136 |
13
|
return type; |
137 |
|
} |
138 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
139 |
111
|
public void setType(String type) {... |
140 |
111
|
this.type = type; |
141 |
|
} |
142 |
|
|
143 |
|
|
144 |
|
|
145 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
146 |
242
|
public String getState() {... |
147 |
242
|
return state; |
148 |
|
} |
149 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
150 |
159
|
public void setState(String state) {... |
151 |
159
|
this.state = state; |
152 |
|
} |
153 |
|
|
154 |
|
|
155 |
|
|
156 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
157 |
152
|
public String getId() {... |
158 |
152
|
return id; |
159 |
|
} |
160 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
161 |
124
|
public void setId(String id) {... |
162 |
124
|
this.id = id; |
163 |
|
} |
164 |
|
} |