1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.lum.ui.requirements.util; |
17 |
|
|
18 |
|
import java.util.HashMap; |
19 |
|
import java.util.List; |
20 |
|
import java.util.Map; |
21 |
|
|
22 |
|
import org.kuali.student.common.dictionary.dto.ObjectStructureDefinition; |
23 |
|
import org.kuali.student.common.dto.StatusInfo; |
24 |
|
import org.kuali.student.common.exceptions.AlreadyExistsException; |
25 |
|
import org.kuali.student.common.exceptions.CircularReferenceException; |
26 |
|
import org.kuali.student.common.exceptions.DataValidationErrorException; |
27 |
|
import org.kuali.student.common.exceptions.DoesNotExistException; |
28 |
|
import org.kuali.student.common.exceptions.InvalidParameterException; |
29 |
|
import org.kuali.student.common.exceptions.MissingParameterException; |
30 |
|
import org.kuali.student.common.exceptions.OperationFailedException; |
31 |
|
import org.kuali.student.common.exceptions.PermissionDeniedException; |
32 |
|
import org.kuali.student.common.exceptions.VersionMismatchException; |
33 |
|
import org.kuali.student.common.search.dto.SearchCriteriaTypeInfo; |
34 |
|
import org.kuali.student.common.search.dto.SearchRequest; |
35 |
|
import org.kuali.student.common.search.dto.SearchResult; |
36 |
|
import org.kuali.student.common.search.dto.SearchResultTypeInfo; |
37 |
|
import org.kuali.student.common.search.dto.SearchTypeInfo; |
38 |
|
import org.kuali.student.common.validation.dto.ValidationResultInfo; |
39 |
|
import org.kuali.student.core.statement.dto.NlUsageTypeInfo; |
40 |
|
import org.kuali.student.core.statement.dto.RefStatementRelationInfo; |
41 |
|
import org.kuali.student.core.statement.dto.RefStatementRelationTypeInfo; |
42 |
|
import org.kuali.student.core.statement.dto.ReqComponentInfo; |
43 |
|
import org.kuali.student.core.statement.dto.ReqComponentTypeInfo; |
44 |
|
import org.kuali.student.core.statement.dto.StatementInfo; |
45 |
|
import org.kuali.student.core.statement.dto.StatementTreeViewInfo; |
46 |
|
import org.kuali.student.core.statement.dto.StatementTypeInfo; |
47 |
|
import org.kuali.student.core.statement.service.StatementService; |
48 |
|
|
|
|
| 0% |
Uncovered Elements: 118 (118) |
Complexity: 59 |
Complexity Density: 1 |
|
49 |
|
public class StatementServiceMock implements StatementService { |
50 |
|
|
51 |
|
private Map<String, Object> map = new HashMap<String, Object>(); |
52 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
53 |
0
|
public void addObject(String key, Object value) {... |
54 |
0
|
this.map.put(key, value); |
55 |
|
} |
56 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
57 |
0
|
public void addAll(Map<String, Object> map) {... |
58 |
0
|
this.map.putAll(map); |
59 |
|
} |
60 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
61 |
0
|
public void clear() {... |
62 |
0
|
this.map.clear(); |
63 |
|
} |
64 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
65 |
0
|
@Override... |
66 |
|
public ReqComponentInfo createReqComponent(String reqComponentType, ReqComponentInfo reqComponentInfo) throws AlreadyExistsException, DataValidationErrorException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
67 |
0
|
return null; |
68 |
|
} |
69 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
70 |
0
|
@Override... |
71 |
|
public StatementInfo createStatement(String statementType, StatementInfo statementInfo) throws AlreadyExistsException, DataValidationErrorException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
72 |
0
|
return null; |
73 |
|
} |
74 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
75 |
0
|
@Override... |
76 |
|
public StatusInfo deleteReqComponent(String reqComponentId) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
77 |
0
|
return null; |
78 |
|
} |
79 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
80 |
0
|
@Override... |
81 |
|
public StatusInfo deleteStatement(String statementId) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
82 |
0
|
return null; |
83 |
|
} |
84 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
85 |
0
|
@Override... |
86 |
|
public String getNaturalLanguageForReqComponent(String reqComponentId, String nlUsageTypeKey, String language) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
87 |
0
|
return null; |
88 |
|
} |
89 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
90 |
0
|
@Override... |
91 |
|
public String getNaturalLanguageForStatement(String statementId, String nlUsageTypeKey, String language) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
92 |
0
|
return null; |
93 |
|
} |
94 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
95 |
0
|
@Override... |
96 |
|
public NlUsageTypeInfo getNlUsageType(String nlUsageTypeKey) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
97 |
0
|
return null; |
98 |
|
} |
99 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
100 |
0
|
@Override... |
101 |
|
public List<NlUsageTypeInfo> getNlUsageTypes() throws OperationFailedException { |
102 |
0
|
return null; |
103 |
|
} |
104 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
105 |
0
|
@Override... |
106 |
|
public List<String> getRefObjectSubTypes(String objectTypeKey) throws OperationFailedException { |
107 |
0
|
return null; |
108 |
|
} |
109 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
110 |
0
|
@Override... |
111 |
|
public List<String> getRefObjectTypes() throws OperationFailedException { |
112 |
0
|
return null; |
113 |
|
} |
114 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
115 |
0
|
@Override... |
116 |
|
public RefStatementRelationInfo getRefStatementRelation(String refStatementRelationId) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
117 |
0
|
return null; |
118 |
|
} |
119 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
120 |
0
|
@Override... |
121 |
|
public ReqComponentInfo getReqComponent(String reqComponentId) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
122 |
0
|
return null; |
123 |
|
} |
124 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
125 |
0
|
@Override... |
126 |
|
public List<ReqComponentInfo> getReqComponentsByType(String reqComponentTypeKey) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
127 |
0
|
return null; |
128 |
|
} |
129 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
130 |
0
|
@Override... |
131 |
|
public ReqComponentTypeInfo getReqComponentType(String reqComponentTypeKey) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
132 |
0
|
return null; |
133 |
|
} |
134 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
135 |
0
|
@Override... |
136 |
|
public List<ReqComponentTypeInfo> getReqComponentTypes() throws OperationFailedException { |
137 |
0
|
return null; |
138 |
|
} |
139 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
140 |
0
|
@Override... |
141 |
|
public List<ReqComponentTypeInfo> getReqComponentTypesForStatementType(String statementTypeKey) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
142 |
0
|
return null; |
143 |
|
} |
144 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
145 |
0
|
@Override... |
146 |
|
public StatementInfo getStatement(String statementId) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
147 |
0
|
return null; |
148 |
|
} |
149 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
150 |
0
|
@Override... |
151 |
|
public List<StatementInfo> getStatementsByType(String statementTypeKey) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
152 |
0
|
return null; |
153 |
|
} |
154 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
155 |
0
|
@Override... |
156 |
|
public List<StatementInfo> getStatementsUsingReqComponent(String reqComponentId) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
157 |
0
|
return null; |
158 |
|
} |
159 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
160 |
0
|
@Override... |
161 |
|
public StatementTreeViewInfo getStatementTreeView(String statementId) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
162 |
0
|
return null; |
163 |
|
} |
164 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
165 |
0
|
@Override... |
166 |
|
public StatementTypeInfo getStatementType(String statementTypeKey) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
167 |
0
|
return null; |
168 |
|
} |
169 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
170 |
0
|
@Override... |
171 |
|
public ReqComponentInfo updateReqComponent(String reqComponentId, ReqComponentInfo reqComponentInfo) throws DataValidationErrorException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException, VersionMismatchException { |
172 |
0
|
return null; |
173 |
|
} |
174 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
175 |
0
|
@Override... |
176 |
|
public StatementInfo updateStatement(String statementId, StatementInfo statementInfo) throws CircularReferenceException, DataValidationErrorException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException, VersionMismatchException { |
177 |
0
|
return null; |
178 |
|
} |
179 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
180 |
0
|
@Override... |
181 |
|
public StatementTreeViewInfo updateStatementTreeView(String statementId, StatementTreeViewInfo statementTreeViewInfo) throws CircularReferenceException, DataValidationErrorException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException, VersionMismatchException { |
182 |
0
|
return null; |
183 |
|
} |
184 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
185 |
0
|
@Override... |
186 |
|
public List<ValidationResultInfo> validateReqComponent(String validationType, ReqComponentInfo reqComponentInfo) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
187 |
0
|
return null; |
188 |
|
} |
189 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
190 |
0
|
@Override... |
191 |
|
public List<ValidationResultInfo> validateStatement(String validationType, StatementInfo statementInfo) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
192 |
0
|
return null; |
193 |
|
} |
194 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
195 |
0
|
@Override... |
196 |
|
public ObjectStructureDefinition getObjectStructure(String objectTypeKey) { |
197 |
0
|
return null; |
198 |
|
} |
199 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
200 |
0
|
@Override... |
201 |
|
public List<String> getObjectTypes() { |
202 |
0
|
return null; |
203 |
|
} |
204 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
205 |
0
|
@Override... |
206 |
|
public SearchCriteriaTypeInfo getSearchCriteriaType(String searchCriteriaTypeKey) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
207 |
0
|
return null; |
208 |
|
} |
209 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
210 |
0
|
@Override... |
211 |
|
public List<SearchCriteriaTypeInfo> getSearchCriteriaTypes() throws OperationFailedException { |
212 |
0
|
return null; |
213 |
|
} |
214 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
215 |
0
|
@Override... |
216 |
|
public SearchResultTypeInfo getSearchResultType(String searchResultTypeKey) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
217 |
0
|
return null; |
218 |
|
} |
219 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
220 |
0
|
@Override... |
221 |
|
public List<SearchResultTypeInfo> getSearchResultTypes() throws OperationFailedException { |
222 |
0
|
return null; |
223 |
|
} |
224 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
225 |
0
|
@Override... |
226 |
|
public SearchTypeInfo getSearchType(String searchTypeKey) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
227 |
0
|
return null; |
228 |
|
} |
229 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
230 |
0
|
@Override... |
231 |
|
public List<SearchTypeInfo> getSearchTypes() throws OperationFailedException { |
232 |
0
|
return null; |
233 |
|
} |
234 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
235 |
0
|
@Override... |
236 |
|
public List<SearchTypeInfo> getSearchTypesByCriteria(String searchCriteriaTypeKey) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
237 |
0
|
return null; |
238 |
|
} |
239 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
240 |
0
|
@Override... |
241 |
|
public List<SearchTypeInfo> getSearchTypesByResult(String searchResultTypeKey) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
242 |
0
|
return null; |
243 |
|
} |
244 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
245 |
0
|
@Override... |
246 |
|
public SearchResult search(SearchRequest searchRequest) throws MissingParameterException { |
247 |
0
|
return null; |
248 |
|
} |
249 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
250 |
0
|
@Override... |
251 |
|
public RefStatementRelationInfo createRefStatementRelation(RefStatementRelationInfo refStatementRelationInfo) throws AlreadyExistsException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
252 |
0
|
return null; |
253 |
|
} |
254 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
255 |
0
|
@Override... |
256 |
|
public StatusInfo deleteRefStatementRelation(String refStatementRelationId) |
257 |
|
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
258 |
0
|
return null; |
259 |
|
} |
260 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
261 |
0
|
@Override... |
262 |
|
public String getNaturalLanguageForRefStatementRelation(String refStatementRelationId, String nlUsageTypeKey, String language) |
263 |
|
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
264 |
0
|
return null; |
265 |
|
} |
266 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
267 |
0
|
@Override... |
268 |
|
public List<RefStatementRelationInfo> getRefStatementRelationsByRef(String refObjectTypeKey, String refObjectId) |
269 |
|
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
270 |
0
|
return null; |
271 |
|
} |
272 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
273 |
0
|
@Override... |
274 |
|
public List<RefStatementRelationInfo> getRefStatementRelationsByStatement(String statementId) |
275 |
|
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
276 |
0
|
return null; |
277 |
|
} |
278 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
279 |
0
|
@Override... |
280 |
|
public String translateReqComponentToNL(ReqComponentInfo reqComponentInfo, String nlUsageTypeKey, String language) |
281 |
|
throws InvalidParameterException, MissingParameterException, OperationFailedException { |
282 |
0
|
return null; |
283 |
|
} |
284 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
285 |
0
|
@Override... |
286 |
|
public String translateStatementTreeViewToNL(StatementTreeViewInfo statementTreeViewInfo, String nlUsageTypeKey, String language) |
287 |
|
throws InvalidParameterException, MissingParameterException, OperationFailedException { |
288 |
0
|
return null; |
289 |
|
} |
290 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
291 |
0
|
@Override... |
292 |
|
public RefStatementRelationInfo updateRefStatementRelation(String refStatementRelationId, RefStatementRelationInfo refStatementRelationInfo) |
293 |
|
throws DataValidationErrorException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException, VersionMismatchException { |
294 |
0
|
return null; |
295 |
|
} |
296 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
297 |
0
|
@Override... |
298 |
|
public List<StatementTypeInfo> getStatementTypes() |
299 |
|
throws OperationFailedException { |
300 |
0
|
return null; |
301 |
|
} |
302 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
303 |
0
|
@Override... |
304 |
|
public List<String> getStatementTypesForStatementType(String statementTypeKey) |
305 |
|
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
306 |
0
|
return null; |
307 |
|
} |
308 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
309 |
0
|
@Override... |
310 |
|
public RefStatementRelationTypeInfo getRefStatementRelationType(String refStatementRelationTypeKey) |
311 |
|
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
312 |
0
|
return null; |
313 |
|
} |
314 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
315 |
0
|
@Override... |
316 |
|
public List<RefStatementRelationTypeInfo> getRefStatementRelationTypes() |
317 |
|
throws OperationFailedException { |
318 |
0
|
return null; |
319 |
|
} |
320 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
321 |
0
|
@Override... |
322 |
|
public List<String> getRefStatementRelationTypesForRefObjectSubType(String refSubTypeKey) |
323 |
|
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
324 |
0
|
return null; |
325 |
|
} |
326 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
327 |
0
|
@Override... |
328 |
|
public List<String> getStatementTypesForRefStatementRelationType(String refStatementRelationTypeKey) |
329 |
|
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
330 |
0
|
return null; |
331 |
|
} |
332 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
333 |
0
|
@Override... |
334 |
|
public List<StatementInfo> getStatementsUsingStatement(String statementId) |
335 |
|
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
336 |
0
|
return null; |
337 |
|
} |
338 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
339 |
0
|
@Override... |
340 |
|
public List<ValidationResultInfo> validateRefStatementRelation(String validationType, RefStatementRelationInfo refStatementRelationInfo) |
341 |
|
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
342 |
0
|
return null; |
343 |
|
} |
344 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
345 |
0
|
public StatementTreeViewInfo getStatementTreeViewForNlUsageType(String statementId, String nlUsageTypeKey, String language)... |
346 |
|
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
347 |
0
|
return null; |
348 |
|
} |
349 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
350 |
0
|
@Override... |
351 |
|
public StatementTreeViewInfo createStatementTreeView( |
352 |
|
StatementTreeViewInfo statementTreeViewInfo) |
353 |
|
throws CircularReferenceException, AlreadyExistsException, |
354 |
|
DataValidationErrorException, DoesNotExistException, |
355 |
|
InvalidParameterException, MissingParameterException, |
356 |
|
OperationFailedException, PermissionDeniedException { |
357 |
|
|
358 |
0
|
return null; |
359 |
|
} |
360 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
361 |
0
|
@Override... |
362 |
|
public StatusInfo deleteStatementTreeView(String statementId) |
363 |
|
throws DoesNotExistException, InvalidParameterException, |
364 |
|
MissingParameterException, OperationFailedException, |
365 |
|
PermissionDeniedException { |
366 |
|
|
367 |
0
|
return null; |
368 |
|
} |
369 |
|
|
370 |
|
|
371 |
|
|
372 |
|
|
373 |
|
|
374 |
|
|
375 |
|
|
376 |
|
|
377 |
|
|
378 |
|
|
379 |
|
|
380 |
|
|
381 |
|
|
382 |
|
|
383 |
|
|
384 |
|
|
385 |
|
|
386 |
|
|
387 |
|
|
388 |
|
|
389 |
|
|
390 |
|
|
391 |
|
|
392 |
|
|
393 |
|
|
394 |
|
} |