Clover Coverage Report - Kuali Student 1.2-M3-SNAPSHOT (Aggregated)
Coverage timestamp: Mon Jun 6 2011 05:02:46 EDT
296   1,447   139   2.13
0   1,146   0.47   69.5
139     1  
2    
 
  LuContextImplTest       Line # 60 135 0% 6 0 100% 1.0
  LuContextImplTest.LuServiceMock       Line # 247 161 0% 133 256 12.9% 0.1292517
 
  (3)
 
1    package org.kuali.student.lum.statement.config.context;
2   
3    import java.util.ArrayList;
4    import java.util.Arrays;
5    import java.util.Date;
6    import java.util.HashMap;
7    import java.util.List;
8    import java.util.Map;
9   
10    import org.junit.Assert;
11    import org.junit.Before;
12    import org.junit.Test;
13    import org.kuali.student.common.dictionary.dto.ObjectStructureDefinition;
14    import org.kuali.student.common.dto.StatusInfo;
15    import org.kuali.student.common.exceptions.AlreadyExistsException;
16    import org.kuali.student.common.exceptions.CircularRelationshipException;
17    import org.kuali.student.common.exceptions.DataValidationErrorException;
18    import org.kuali.student.common.exceptions.DependentObjectsExistException;
19    import org.kuali.student.common.exceptions.DoesNotExistException;
20    import org.kuali.student.common.exceptions.IllegalVersionSequencingException;
21    import org.kuali.student.common.exceptions.InvalidParameterException;
22    import org.kuali.student.common.exceptions.MissingParameterException;
23    import org.kuali.student.common.exceptions.OperationFailedException;
24    import org.kuali.student.common.exceptions.PermissionDeniedException;
25    import org.kuali.student.common.exceptions.UnsupportedActionException;
26    import org.kuali.student.common.exceptions.VersionMismatchException;
27    import org.kuali.student.common.search.dto.SearchCriteriaTypeInfo;
28    import org.kuali.student.common.search.dto.SearchRequest;
29    import org.kuali.student.common.search.dto.SearchResult;
30    import org.kuali.student.common.search.dto.SearchResultTypeInfo;
31    import org.kuali.student.common.search.dto.SearchTypeInfo;
32    import org.kuali.student.common.validation.dto.ValidationResultInfo;
33    import org.kuali.student.common.versionmanagement.dto.VersionDisplayInfo;
34    import org.kuali.student.core.statement.dto.ReqCompFieldInfo;
35    import org.kuali.student.core.statement.dto.ReqComponentInfo;
36    import org.kuali.student.lum.lu.dto.CluCluRelationInfo;
37    import org.kuali.student.lum.lu.dto.CluIdentifierInfo;
38    import org.kuali.student.lum.lu.dto.CluInfo;
39    import org.kuali.student.lum.lu.dto.CluLoRelationInfo;
40    import org.kuali.student.lum.lu.dto.CluLoRelationTypeInfo;
41    import org.kuali.student.lum.lu.dto.CluPublicationInfo;
42    import org.kuali.student.lum.lu.dto.CluResultInfo;
43    import org.kuali.student.lum.lu.dto.CluResultTypeInfo;
44    import org.kuali.student.lum.lu.dto.CluSetInfo;
45    import org.kuali.student.lum.lu.dto.CluSetTreeViewInfo;
46    import org.kuali.student.lum.lu.dto.CluSetTypeInfo;
47    import org.kuali.student.lum.lu.dto.DeliveryMethodTypeInfo;
48    import org.kuali.student.lum.lu.dto.InstructionalFormatTypeInfo;
49    import org.kuali.student.lum.lu.dto.LuCodeTypeInfo;
50    import org.kuali.student.lum.lu.dto.LuLuRelationTypeInfo;
51    import org.kuali.student.lum.lu.dto.LuPublicationTypeInfo;
52    import org.kuali.student.lum.lu.dto.LuTypeInfo;
53    import org.kuali.student.lum.lu.dto.LuiInfo;
54    import org.kuali.student.lum.lu.dto.LuiLuiRelationInfo;
55    import org.kuali.student.lum.lu.dto.ResultUsageTypeInfo;
56    import org.kuali.student.lum.lu.service.LuService;
57    import org.kuali.student.lum.statement.config.context.util.NLCluSet;
58    import org.kuali.student.lum.statement.typekey.ReqComponentFieldTypes;
59   
 
60    public class LuContextImplTest {
61   
62    private LuService luService = new LuServiceMock();
63    private LuContextImpl luContext = new LuContextImpl();
64   
65    private ReqComponentInfo reqComponent1;
66    private ReqComponentInfo reqComponent2;
67   
 
68  3 toggle private void setupReqComponent1() {
69  3 reqComponent1 = new ReqComponentInfo();
70  3 List<ReqCompFieldInfo> reqCompFieldList = new ArrayList<ReqCompFieldInfo>();
71  3 ReqCompFieldInfo reqCompField1 = new ReqCompFieldInfo();
72  3 reqCompField1.setType(ReqComponentFieldTypes.CLU_KEY.getId());
73  3 reqCompField1.setValue("CLU-NL-1");
74  3 reqCompFieldList.add(reqCompField1);
75  3 reqComponent1.setReqCompFields(reqCompFieldList);
76   
77  3 ReqCompFieldInfo reqCompField2 = new ReqCompFieldInfo();
78  3 reqCompField2.setType(ReqComponentFieldTypes.COURSE_CLU_KEY.getId());
79  3 reqCompField2.setValue("CLU-NL-1");
80  3 reqCompFieldList.add(reqCompField2);
81  3 reqComponent1.setReqCompFields(reqCompFieldList);
82   
83  3 ReqCompFieldInfo reqCompField3 = new ReqCompFieldInfo();
84  3 reqCompField3.setType(ReqComponentFieldTypes.PROGRAM_CLU_KEY.getId());
85  3 reqCompField3.setValue("CLU-NL-1");
86  3 reqCompFieldList.add(reqCompField3);
87  3 reqComponent1.setReqCompFields(reqCompFieldList);
88   
89  3 ReqCompFieldInfo reqCompField4 = new ReqCompFieldInfo();
90  3 reqCompField4.setType(ReqComponentFieldTypes.TEST_CLU_KEY.getId());
91  3 reqCompField4.setValue("CLU-NL-1");
92  3 reqCompFieldList.add(reqCompField4);
93  3 reqComponent1.setReqCompFields(reqCompFieldList);
94   
95  3 ReqCompFieldInfo reqCompField5 = new ReqCompFieldInfo();
96  3 reqCompField5.setType(ReqComponentFieldTypes.CLUSET_KEY.getId());
97  3 reqCompField5.setValue("CLUSET-NL-1");
98  3 reqCompFieldList.add(reqCompField5);
99  3 reqComponent1.setReqCompFields(reqCompFieldList);
100   
101  3 ReqCompFieldInfo reqCompField6 = new ReqCompFieldInfo();
102  3 reqCompField6.setType(ReqComponentFieldTypes.COURSE_CLUSET_KEY.getId());
103  3 reqCompField6.setValue("CLUSET-NL-1");
104  3 reqCompFieldList.add(reqCompField6);
105  3 reqComponent1.setReqCompFields(reqCompFieldList);
106   
107  3 ReqCompFieldInfo reqCompField7 = new ReqCompFieldInfo();
108  3 reqCompField7.setType(ReqComponentFieldTypes.PROGRAM_CLUSET_KEY.getId());
109  3 reqCompField7.setValue("CLUSET-NL-1");
110  3 reqCompFieldList.add(reqCompField7);
111  3 reqComponent1.setReqCompFields(reqCompFieldList);
112   
113  3 ReqCompFieldInfo reqCompField8 = new ReqCompFieldInfo();
114  3 reqCompField8.setType(ReqComponentFieldTypes.TEST_CLUSET_KEY.getId());
115  3 reqCompField8.setValue("CLUSET-NL-1");
116  3 reqCompFieldList.add(reqCompField8);
117  3 reqComponent1.setReqCompFields(reqCompFieldList);
118    }
119   
 
120  3 toggle private void setupReqComponent2() {
121  3 reqComponent2 = new ReqComponentInfo();
122  3 List<ReqCompFieldInfo> reqCompFieldList = new ArrayList<ReqCompFieldInfo>();
123  3 ReqCompFieldInfo reqCompField1 = new ReqCompFieldInfo();
124  3 reqCompField1.setType(ReqComponentFieldTypes.CLU_KEY.getId());
125  3 reqCompField1.setValue(null);
126  3 reqCompFieldList.add(reqCompField1);
127  3 reqComponent2.setReqCompFields(reqCompFieldList);
128   
129  3 ReqCompFieldInfo reqCompField2 = new ReqCompFieldInfo();
130  3 reqCompField2.setType(ReqComponentFieldTypes.COURSE_CLU_KEY.getId());
131  3 reqCompField2.setValue(null);
132  3 reqCompFieldList.add(reqCompField2);
133  3 reqComponent2.setReqCompFields(reqCompFieldList);
134   
135  3 ReqCompFieldInfo reqCompField3 = new ReqCompFieldInfo();
136  3 reqCompField3.setType(ReqComponentFieldTypes.PROGRAM_CLU_KEY.getId());
137  3 reqCompField3.setValue(null);
138  3 reqCompFieldList.add(reqCompField3);
139  3 reqComponent2.setReqCompFields(reqCompFieldList);
140   
141  3 ReqCompFieldInfo reqCompField4 = new ReqCompFieldInfo();
142  3 reqCompField4.setType(ReqComponentFieldTypes.TEST_CLU_KEY.getId());
143  3 reqCompField4.setValue(null);
144  3 reqCompFieldList.add(reqCompField4);
145  3 reqComponent2.setReqCompFields(reqCompFieldList);
146   
147  3 ReqCompFieldInfo reqCompField5 = new ReqCompFieldInfo();
148  3 reqCompField5.setType(ReqComponentFieldTypes.CLUSET_KEY.getId());
149  3 reqCompField5.setValue(null);
150  3 reqCompFieldList.add(reqCompField5);
151  3 reqComponent2.setReqCompFields(reqCompFieldList);
152   
153  3 ReqCompFieldInfo reqCompField6 = new ReqCompFieldInfo();
154  3 reqCompField6.setType(ReqComponentFieldTypes.COURSE_CLUSET_KEY.getId());
155  3 reqCompField6.setValue(null);
156  3 reqCompFieldList.add(reqCompField6);
157  3 reqComponent2.setReqCompFields(reqCompFieldList);
158   
159  3 ReqCompFieldInfo reqCompField7 = new ReqCompFieldInfo();
160  3 reqCompField7.setType(ReqComponentFieldTypes.PROGRAM_CLUSET_KEY.getId());
161  3 reqCompField7.setValue(null);
162  3 reqCompFieldList.add(reqCompField7);
163  3 reqComponent2.setReqCompFields(reqCompFieldList);
164   
165  3 ReqCompFieldInfo reqCompField8 = new ReqCompFieldInfo();
166  3 reqCompField8.setType(ReqComponentFieldTypes.TEST_CLUSET_KEY.getId());
167  3 reqCompField8.setValue(null);
168  3 reqCompFieldList.add(reqCompField8);
169  3 reqComponent2.setReqCompFields(reqCompFieldList);
170    }
171   
 
172  3 toggle @Before
173    public void beforeMethod() {
174  3 luContext.setLuService(luService);
175  3 setupReqComponent1();
176  3 setupReqComponent2();
177    }
178   
 
179  1 toggle @Test
180    public void testCreateContextMap_Clu() throws OperationFailedException {
181  1 Map<String, Object> contextMap = luContext.createContextMap(reqComponent1);
182  1 CluInfo clu = (CluInfo) contextMap.get(LuContextImpl.CLU_TOKEN);
183  1 CluInfo courseClu = (CluInfo) contextMap.get(LuContextImpl.COURSE_CLU_TOKEN);
184  1 CluInfo programClu = (CluInfo) contextMap.get(LuContextImpl.PROGRAM_CLU_TOKEN);
185  1 CluInfo testClu = (CluInfo) contextMap.get(LuContextImpl.TEST_CLU_TOKEN);
186   
187  1 Assert.assertNotNull(contextMap);
188  1 Assert.assertEquals("CLU-NL-1", clu.getId());
189  1 Assert.assertEquals("CLU-NL-1", courseClu.getId());
190  1 Assert.assertEquals("CLU-NL-1", programClu.getId());
191  1 Assert.assertEquals("CLU-NL-1", testClu.getId());
192   
193  1 Assert.assertEquals("kuali.lu.type.CreditCourse", clu.getType());
194  1 Assert.assertEquals("MATH 152", clu.getOfficialIdentifier().getShortName());
195  1 Assert.assertEquals("MATH 152 Linear Systems", clu.getOfficialIdentifier().getLongName());
196    }
197   
 
198  1 toggle @Test
199    public void testCreateContextMap_CluSet() throws OperationFailedException {
200  1 Map<String, Object> contextMap = luContext.createContextMap(reqComponent1);
201  1 NLCluSet cluSet = (NLCluSet) contextMap.get(LuContextImpl.CLU_SET_TOKEN);
202  1 NLCluSet courseCluSet = (NLCluSet) contextMap.get(LuContextImpl.COURSE_CLU_SET_TOKEN);
203  1 NLCluSet programCluSet = (NLCluSet) contextMap.get(LuContextImpl.PROGRAM_CLU_SET_TOKEN);
204  1 NLCluSet testCluSet = (NLCluSet) contextMap.get(LuContextImpl.TEST_CLU_SET_TOKEN);
205   
206   
207  1 Assert.assertNotNull(contextMap);
208  1 Assert.assertEquals("CLUSET-NL-1", cluSet.getCluSetId());
209  1 Assert.assertEquals("CLUSET-NL-1", courseCluSet.getCluSetId());
210  1 Assert.assertEquals("CLUSET-NL-1", programCluSet.getCluSetId());
211  1 Assert.assertEquals("CLUSET-NL-1", testCluSet.getCluSetId());
212   
213  1 Assert.assertEquals("(MATH152, MATH180)", cluSet.getCluSetAsCode());
214  1 Assert.assertEquals("(MATH 152, MATH 180)", cluSet.getCluSetAsShortName());
215  1 Assert.assertEquals("(MATH 152 Linear Systems, MATH 180 Differential Calculus with Physical Applications)", cluSet.getCluSetAsLongName());
216   
217  1 Assert.assertEquals("MATH152", cluSet.getCluAsCode(0));
218  1 Assert.assertEquals("MATH 152", cluSet.getCluAsShortName(0));
219  1 Assert.assertEquals("MATH180", cluSet.getCluAsCode(1));
220  1 Assert.assertEquals("MATH 180", cluSet.getCluAsShortName(1));
221    }
222   
 
223  1 toggle @Test
224    public void testCreateContextMap_NullTokenValues() throws OperationFailedException {
225  1 Map<String, Object> contextMap = luContext.createContextMap(reqComponent2);
226  1 CluInfo clu = (CluInfo) contextMap.get(LuContextImpl.CLU_TOKEN);
227  1 CluInfo courseClu = (CluInfo) contextMap.get(LuContextImpl.COURSE_CLU_TOKEN);
228  1 CluInfo programClu = (CluInfo) contextMap.get(LuContextImpl.PROGRAM_CLU_TOKEN);
229  1 CluInfo testClu = (CluInfo) contextMap.get(LuContextImpl.TEST_CLU_TOKEN);
230  1 NLCluSet cluSet = (NLCluSet) contextMap.get(LuContextImpl.CLU_SET_TOKEN);
231  1 NLCluSet courseCluSet = (NLCluSet) contextMap.get(LuContextImpl.COURSE_CLU_SET_TOKEN);
232  1 NLCluSet programCluSet = (NLCluSet) contextMap.get(LuContextImpl.PROGRAM_CLU_SET_TOKEN);
233  1 NLCluSet testCluSet = (NLCluSet) contextMap.get(LuContextImpl.TEST_CLU_SET_TOKEN);
234   
235  1 Assert.assertNotNull(contextMap);
236  1 Assert.assertEquals(null, clu);
237  1 Assert.assertEquals(null, courseClu);
238  1 Assert.assertEquals(null, programClu);
239  1 Assert.assertEquals(null, testClu);
240  1 Assert.assertEquals(null, cluSet);
241  1 Assert.assertEquals(null, courseCluSet);
242  1 Assert.assertEquals(null, programCluSet);
243  1 Assert.assertEquals(null, testCluSet);
244   
245    }
246   
 
247    private static class LuServiceMock implements LuService {
248   
249    private Map<String, CluInfo> cluMap = new HashMap<String, CluInfo>();
250    private Map<String, CluSetInfo> cluSetMap = new HashMap<String, CluSetInfo>();
251    private Map<String, CluSetTreeViewInfo> cluSetTreeViewMap = new HashMap<String, CluSetTreeViewInfo>();
252   
 
253  3 toggle public LuServiceMock() {
254  3 CluInfo clu1 = new CluInfo();
255  3 clu1.setId("CLU-NL-1");
256  3 clu1.setType("kuali.lu.type.CreditCourse");
257  3 CluIdentifierInfo cluIdent1 = new CluIdentifierInfo();
258  3 cluIdent1.setId("IDENT-NL-1");
259  3 cluIdent1.setCode("MATH152");
260  3 cluIdent1.setShortName("MATH 152");
261  3 cluIdent1.setLongName("MATH 152 Linear Systems");
262  3 clu1.setOfficialIdentifier(cluIdent1);
263  3 cluMap.put("CLU-NL-1", clu1);
264   
265  3 CluInfo clu2 = new CluInfo();
266  3 clu2.setId("CLU-NL-3");
267  3 clu2.setType("kuali.lu.type.CreditCourse");
268  3 CluIdentifierInfo cluIdent2 = new CluIdentifierInfo();
269  3 cluIdent2.setId("IDENT-NL-3");
270  3 cluIdent2.setCode("MATH180");
271  3 cluIdent2.setShortName("MATH 180");
272  3 cluIdent2.setLongName("MATH 180 Differential Calculus with Physical Applications");
273  3 clu2.setOfficialIdentifier(cluIdent2);
274  3 cluMap.put("CLU-NL-3", clu1);
275   
276  3 CluSetInfo cluSet = new CluSetInfo();
277  3 cluSet.setId("CLUSET-NL-1");
278  3 cluSet.setCluIds(Arrays.asList(new String[] {"CLU-NL-1", "CLU-NL-3"}));
279  3 cluSetMap.put("CLUSET-NL-1", cluSet);
280   
281  3 CluSetTreeViewInfo treeView = new CluSetTreeViewInfo();
282  3 treeView.setClus(Arrays.asList(new CluInfo[] {clu1, clu2}));
283  3 cluSetTreeViewMap.put("CLUSET-NL-1", treeView);
284    }
285   
 
286  0 toggle @Override
287    public StatusInfo addCluResourceRequirement(String resourceTypeKey,
288    String cluId) throws AlreadyExistsException,
289    DoesNotExistException, InvalidParameterException,
290    MissingParameterException, OperationFailedException,
291    PermissionDeniedException {
292    // TODO Auto-generated method stub
293  0 return null;
294    }
295   
 
296  0 toggle @Override
297    public StatusInfo addCluSetToCluSet(String cluSetId,
298    String addedCluSetId) throws CircularRelationshipException,
299    DoesNotExistException, InvalidParameterException,
300    MissingParameterException, OperationFailedException,
301    PermissionDeniedException, UnsupportedActionException {
302    // TODO Auto-generated method stub
303  0 return null;
304    }
305   
 
306  0 toggle @Override
307    public StatusInfo addCluSetsToCluSet(String cluSetId,
308    List<String> addedCluSetIdList)
309    throws CircularRelationshipException, DoesNotExistException,
310    InvalidParameterException, MissingParameterException,
311    OperationFailedException, PermissionDeniedException,
312    UnsupportedActionException {
313    // TODO Auto-generated method stub
314  0 return null;
315    }
316   
 
317  0 toggle @Override
318    public StatusInfo addCluToCluSet(String cluId, String cluSetId)
319    throws DoesNotExistException, InvalidParameterException,
320    MissingParameterException, OperationFailedException,
321    PermissionDeniedException, UnsupportedActionException {
322    // TODO Auto-generated method stub
323  0 return null;
324    }
325   
 
326  0 toggle @Override
327    public StatusInfo addClusToCluSet(List<String> cluIdList,
328    String cluSetId) throws DoesNotExistException,
329    InvalidParameterException, MissingParameterException,
330    OperationFailedException, PermissionDeniedException,
331    UnsupportedActionException {
332    // TODO Auto-generated method stub
333  0 return null;
334    }
335   
 
336  0 toggle @Override
337    public CluInfo createClu(String luTypeKey, CluInfo cluInfo)
338    throws AlreadyExistsException, DataValidationErrorException,
339    DoesNotExistException, InvalidParameterException,
340    MissingParameterException, OperationFailedException,
341    PermissionDeniedException {
342    // TODO Auto-generated method stub
343  0 return null;
344    }
345   
 
346  0 toggle @Override
347    public CluCluRelationInfo createCluCluRelation(String cluId,
348    String relatedCluId, String luLuRelationTypeKey,
349    CluCluRelationInfo cluCluRelationInfo)
350    throws AlreadyExistsException, CircularRelationshipException,
351    DataValidationErrorException, DoesNotExistException,
352    InvalidParameterException, MissingParameterException,
353    OperationFailedException, PermissionDeniedException {
354    // TODO Auto-generated method stub
355  0 return null;
356    }
357   
 
358  0 toggle @Override
359    public CluLoRelationInfo createCluLoRelation(String cluId, String loId,
360    String cluLoRelationType, CluLoRelationInfo cluLoRelationInfo)
361    throws AlreadyExistsException, DoesNotExistException,
362    InvalidParameterException, MissingParameterException,
363    OperationFailedException, PermissionDeniedException,
364    DataValidationErrorException {
365    // TODO Auto-generated method stub
366  0 return null;
367    }
368   
 
369  0 toggle @Override
370    public CluPublicationInfo createCluPublication(String cluId,
371    String luPublicationType, CluPublicationInfo cluPublicationInfo)
372    throws AlreadyExistsException, DataValidationErrorException,
373    InvalidParameterException, MissingParameterException,
374    OperationFailedException, PermissionDeniedException {
375    // TODO Auto-generated method stub
376  0 return null;
377    }
378   
 
379  0 toggle @Override
380    public CluResultInfo createCluResult(String cluId,
381    String cluResultType, CluResultInfo cluResultInfo)
382    throws AlreadyExistsException, DataValidationErrorException,
383    InvalidParameterException, MissingParameterException,
384    OperationFailedException, PermissionDeniedException,
385    DoesNotExistException {
386    // TODO Auto-generated method stub
387  0 return null;
388    }
389   
 
390  0 toggle @Override
391    public CluSetInfo createCluSet(String cluSetType, CluSetInfo cluSetInfo)
392    throws AlreadyExistsException, DataValidationErrorException,
393    InvalidParameterException, MissingParameterException,
394    OperationFailedException, PermissionDeniedException,
395    UnsupportedActionException {
396    // TODO Auto-generated method stub
397  0 return null;
398    }
399   
 
400  0 toggle @Override
401    public LuiInfo createLui(String cluId, String atpKey, LuiInfo luiInfo)
402    throws AlreadyExistsException, DataValidationErrorException,
403    DoesNotExistException, InvalidParameterException,
404    MissingParameterException, OperationFailedException,
405    PermissionDeniedException {
406    // TODO Auto-generated method stub
407  0 return null;
408    }
409   
 
410  0 toggle @Override
411    public LuiLuiRelationInfo createLuiLuiRelation(String luiId,
412    String relatedLuiId, String luLuRelationType,
413    LuiLuiRelationInfo luiLuiRelationInfo)
414    throws AlreadyExistsException, CircularRelationshipException,
415    DataValidationErrorException, DoesNotExistException,
416    InvalidParameterException, MissingParameterException,
417    OperationFailedException, PermissionDeniedException {
418    // TODO Auto-generated method stub
419  0 return null;
420    }
421   
 
422  0 toggle @Override
423    public StatusInfo deleteClu(String cluId) throws DoesNotExistException,
424    InvalidParameterException, MissingParameterException,
425    DependentObjectsExistException, OperationFailedException,
426    PermissionDeniedException {
427    // TODO Auto-generated method stub
428  0 return null;
429    }
430   
 
431  0 toggle @Override
432    public StatusInfo deleteCluCluRelation(String cluCluRelationId)
433    throws DoesNotExistException, InvalidParameterException,
434    MissingParameterException, OperationFailedException,
435    PermissionDeniedException {
436    // TODO Auto-generated method stub
437  0 return null;
438    }
439   
 
440  0 toggle @Override
441    public StatusInfo deleteCluLoRelation(String cluLoRelationId)
442    throws DoesNotExistException, InvalidParameterException,
443    MissingParameterException, OperationFailedException,
444    PermissionDeniedException {
445    // TODO Auto-generated method stub
446  0 return null;
447    }
448   
 
449  0 toggle @Override
450    public StatusInfo deleteCluPublication(String cluPublicationId)
451    throws DoesNotExistException, InvalidParameterException,
452    MissingParameterException, DependentObjectsExistException,
453    OperationFailedException, PermissionDeniedException {
454    // TODO Auto-generated method stub
455  0 return null;
456    }
457   
 
458  0 toggle @Override
459    public StatusInfo deleteCluResult(String cluResultId)
460    throws DoesNotExistException, InvalidParameterException,
461    MissingParameterException, DependentObjectsExistException,
462    OperationFailedException, PermissionDeniedException {
463    // TODO Auto-generated method stub
464  0 return null;
465    }
466   
 
467  0 toggle @Override
468    public StatusInfo deleteCluSet(String cluSetId)
469    throws DoesNotExistException, InvalidParameterException,
470    MissingParameterException, OperationFailedException,
471    PermissionDeniedException {
472    // TODO Auto-generated method stub
473  0 return null;
474    }
475   
 
476  0 toggle @Override
477    public StatusInfo deleteLui(String luiId)
478    throws DependentObjectsExistException, DoesNotExistException,
479    InvalidParameterException, MissingParameterException,
480    OperationFailedException, PermissionDeniedException {
481    // TODO Auto-generated method stub
482  0 return null;
483    }
484   
 
485  0 toggle @Override
486    public StatusInfo deleteLuiLuiRelation(String luiLuiRelationId)
487    throws DoesNotExistException, InvalidParameterException,
488    MissingParameterException, OperationFailedException,
489    PermissionDeniedException {
490    // TODO Auto-generated method stub
491  0 return null;
492    }
493   
 
494  0 toggle @Override
495    public List<String> getAllCluIdsInCluSet(String cluSetId)
496    throws DoesNotExistException, InvalidParameterException,
497    MissingParameterException, OperationFailedException,
498    PermissionDeniedException {
499    // TODO Auto-generated method stub
500  0 return null;
501    }
502   
 
503  0 toggle @Override
504    public List<CluInfo> getAllClusInCluSet(String cluSetId)
505    throws DoesNotExistException, InvalidParameterException,
506    MissingParameterException, OperationFailedException,
507    PermissionDeniedException {
508    // TODO Auto-generated method stub
509  0 return null;
510    }
511   
 
512  0 toggle @Override
513    public List<String> getAllowedCluLoRelationTypesForLuType(
514    String luTypeKey) throws DoesNotExistException,
515    InvalidParameterException, MissingParameterException,
516    OperationFailedException {
517    // TODO Auto-generated method stub
518  0 return null;
519    }
520   
 
521  0 toggle @Override
522    public List<String> getAllowedLuLuRelationTypesByCluId(String cluId,
523    String relatedCluId) throws DoesNotExistException,
524    InvalidParameterException, MissingParameterException,
525    OperationFailedException {
526    // TODO Auto-generated method stub
527  0 return null;
528    }
529   
 
530  0 toggle @Override
531    public List<String> getAllowedLuLuRelationTypesByLuiId(String luiId,
532    String relatedLuiId) throws DoesNotExistException,
533    InvalidParameterException, MissingParameterException,
534    OperationFailedException {
535    // TODO Auto-generated method stub
536  0 return null;
537    }
538   
 
539  0 toggle @Override
540    public List<String> getAllowedLuLuRelationTypesForLuType(
541    String luTypeKey, String relatedLuTypeKey)
542    throws DoesNotExistException, InvalidParameterException,
543    MissingParameterException, OperationFailedException {
544    // TODO Auto-generated method stub
545  0 return null;
546    }
547   
 
548  0 toggle @Override
549    public List<String> getAllowedResultComponentTypesForResultUsageType(
550    String resultUsageTypeKey) throws DoesNotExistException,
551    InvalidParameterException, MissingParameterException,
552    OperationFailedException {
553    // TODO Auto-generated method stub
554  0 return null;
555    }
556   
 
557  0 toggle @Override
558    public List<String> getAllowedResultUsageTypesForLuType(String luTypeKey)
559    throws DoesNotExistException, InvalidParameterException,
560    MissingParameterException, OperationFailedException {
561    // TODO Auto-generated method stub
562  0 return null;
563    }
564   
 
565  8 toggle @Override
566    public CluInfo getClu(String cluId) throws DoesNotExistException,
567    InvalidParameterException, MissingParameterException,
568    OperationFailedException {
569  8 return cluMap.get(cluId);
570    }
571   
 
572  0 toggle @Override
573    public CluCluRelationInfo getCluCluRelation(String cluCluRelationId)
574    throws DoesNotExistException, InvalidParameterException,
575    MissingParameterException, OperationFailedException {
576    // TODO Auto-generated method stub
577  0 return null;
578    }
579   
 
580  0 toggle @Override
581    public List<CluCluRelationInfo> getCluCluRelationsByClu(String cluId)
582    throws DoesNotExistException, InvalidParameterException,
583    MissingParameterException, OperationFailedException {
584    // TODO Auto-generated method stub
585  0 return null;
586    }
587   
 
588  0 toggle @Override
589    public List<String> getCluIdsByLuType(String luTypeKey, String luState)
590    throws DoesNotExistException, InvalidParameterException,
591    MissingParameterException, OperationFailedException {
592    // TODO Auto-generated method stub
593  0 return null;
594    }
595   
 
596  0 toggle @Override
597    public List<String> getCluIdsByRelation(String relatedCluId,
598    String luLuRelationType) throws DoesNotExistException,
599    InvalidParameterException, MissingParameterException,
600    OperationFailedException {
601    // TODO Auto-generated method stub
602  0 return null;
603    }
604   
 
605  0 toggle @Override
606    public List<String> getCluIdsByResultComponent(String resultComponentId)
607    throws DoesNotExistException, InvalidParameterException,
608    MissingParameterException, OperationFailedException {
609    // TODO Auto-generated method stub
610  0 return null;
611    }
612   
 
613  0 toggle @Override
614    public List<String> getCluIdsByResultUsageType(String resultUsageTypeKey)
615    throws DoesNotExistException, InvalidParameterException,
616    MissingParameterException, OperationFailedException {
617    // TODO Auto-generated method stub
618  0 return null;
619    }
620   
 
621  0 toggle @Override
622    public List<String> getCluIdsFromCluSet(String cluSetId)
623    throws DoesNotExistException, InvalidParameterException,
624    MissingParameterException, OperationFailedException,
625    PermissionDeniedException {
626    // TODO Auto-generated method stub
627  0 return null;
628    }
629   
 
630  0 toggle @Override
631    public CluLoRelationInfo getCluLoRelation(String cluLoRelationId)
632    throws DoesNotExistException, InvalidParameterException,
633    MissingParameterException, OperationFailedException,
634    PermissionDeniedException {
635    // TODO Auto-generated method stub
636  0 return null;
637    }
638   
 
639  0 toggle @Override
640    public CluLoRelationTypeInfo getCluLoRelationType(
641    String cluLoRelationTypeKey) throws DoesNotExistException,
642    InvalidParameterException, MissingParameterException,
643    OperationFailedException {
644    // TODO Auto-generated method stub
645  0 return null;
646    }
647   
 
648  0 toggle @Override
649    public List<CluLoRelationTypeInfo> getCluLoRelationTypes()
650    throws OperationFailedException {
651    // TODO Auto-generated method stub
652  0 return null;
653    }
654   
 
655  0 toggle @Override
656    public List<CluLoRelationInfo> getCluLoRelationsByClu(String cluId)
657    throws DoesNotExistException, InvalidParameterException,
658    MissingParameterException, OperationFailedException {
659    // TODO Auto-generated method stub
660  0 return null;
661    }
662   
 
663  0 toggle @Override
664    public List<CluLoRelationInfo> getCluLoRelationsByLo(String loId)
665    throws DoesNotExistException, InvalidParameterException,
666    MissingParameterException, OperationFailedException {
667    // TODO Auto-generated method stub
668  0 return null;
669    }
670   
 
671  0 toggle @Override
672    public CluPublicationInfo getCluPublication(String cluPublicationId)
673    throws DoesNotExistException, InvalidParameterException,
674    MissingParameterException, OperationFailedException {
675    // TODO Auto-generated method stub
676  0 return null;
677    }
678   
 
679  0 toggle @Override
680    public List<CluPublicationInfo> getCluPublicationsByCluId(String cluId)
681    throws DoesNotExistException, InvalidParameterException,
682    MissingParameterException, OperationFailedException {
683    // TODO Auto-generated method stub
684  0 return null;
685    }
686   
 
687  0 toggle @Override
688    public List<CluPublicationInfo> getCluPublicationsByType(
689    String luPublicationTypeKey) throws DoesNotExistException,
690    InvalidParameterException, MissingParameterException,
691    OperationFailedException {
692    // TODO Auto-generated method stub
693  0 return null;
694    }
695   
 
696  0 toggle @Override
697    public CluResultInfo getCluResult(String cluResultId)
698    throws DoesNotExistException, InvalidParameterException,
699    MissingParameterException, OperationFailedException {
700    // TODO Auto-generated method stub
701  0 return null;
702    }
703   
 
704  0 toggle @Override
705    public List<CluResultInfo> getCluResultByClu(String cluId)
706    throws DoesNotExistException, InvalidParameterException,
707    MissingParameterException, OperationFailedException {
708    // TODO Auto-generated method stub
709  0 return null;
710    }
711   
 
712  0 toggle @Override
713    public CluResultTypeInfo getCluResultType(String cluResultTypeKey)
714    throws DoesNotExistException, InvalidParameterException,
715    MissingParameterException, OperationFailedException {
716    // TODO Auto-generated method stub
717  0 return null;
718    }
719   
 
720  0 toggle @Override
721    public List<CluResultTypeInfo> getCluResultTypes()
722    throws OperationFailedException {
723    // TODO Auto-generated method stub
724  0 return null;
725    }
726   
 
727  0 toggle @Override
728    public List<CluResultTypeInfo> getCluResultTypesForLuType(
729    String luTypeKey) throws DoesNotExistException,
730    InvalidParameterException, MissingParameterException,
731    OperationFailedException {
732    // TODO Auto-generated method stub
733  0 return null;
734    }
735   
 
736  0 toggle @Override
737    public List<String> getCluSetIdsFromCluSet(String cluSetId)
738    throws DoesNotExistException, InvalidParameterException,
739    MissingParameterException, OperationFailedException,
740    PermissionDeniedException {
741    // TODO Auto-generated method stub
742  0 return null;
743    }
744   
 
745  8 toggle @Override
746    public CluSetInfo getCluSetInfo(String cluSetId)
747    throws DoesNotExistException, InvalidParameterException,
748    MissingParameterException, OperationFailedException,
749    PermissionDeniedException {
750  8 return cluSetMap.get(cluSetId);
751    }
752   
 
753  0 toggle @Override
754    public List<CluSetInfo> getCluSetInfoByIdList(List<String> cluSetIdList)
755    throws DoesNotExistException, InvalidParameterException,
756    MissingParameterException, OperationFailedException,
757    PermissionDeniedException {
758    // TODO Auto-generated method stub
759  0 return null;
760    }
761   
 
762  8 toggle @Override
763    public CluSetTreeViewInfo getCluSetTreeView(String cluSetId)
764    throws DoesNotExistException, InvalidParameterException,
765    MissingParameterException, OperationFailedException,
766    PermissionDeniedException {
767    // TODO Auto-generated method stub
768  8 return cluSetTreeViewMap.get(cluSetId);
769    }
770   
 
771  0 toggle @Override
772    public CluSetTypeInfo getCluSetType(String cluSetTypeKey)
773    throws DoesNotExistException, InvalidParameterException,
774    MissingParameterException, OperationFailedException {
775    // TODO Auto-generated method stub
776  0 return null;
777    }
778   
 
779  0 toggle @Override
780    public List<CluSetTypeInfo> getCluSetTypes()
781    throws OperationFailedException {
782    // TODO Auto-generated method stub
783  0 return null;
784    }
785   
 
786  0 toggle @Override
787    public List<CluInfo> getClusByIdList(List<String> cluIdList)
788    throws DoesNotExistException, InvalidParameterException,
789    MissingParameterException, OperationFailedException {
790    // TODO Auto-generated method stub
791  0 return null;
792    }
793   
 
794  0 toggle @Override
795    public List<CluInfo> getClusByLuType(String luTypeKey, String luState)
796    throws DoesNotExistException, InvalidParameterException,
797    MissingParameterException, OperationFailedException {
798    // TODO Auto-generated method stub
799  0 return null;
800    }
801   
 
802  0 toggle @Override
803    public List<CluInfo> getClusByRelation(String relatedCluId,
804    String luLuRelationType) throws DoesNotExistException,
805    InvalidParameterException, MissingParameterException,
806    OperationFailedException {
807    // TODO Auto-generated method stub
808  0 return null;
809    }
810   
 
811  0 toggle @Override
812    public List<CluInfo> getClusFromCluSet(String cluSetId)
813    throws DoesNotExistException, InvalidParameterException,
814    MissingParameterException, OperationFailedException,
815    PermissionDeniedException {
816    // TODO Auto-generated method stub
817  0 return null;
818    }
819   
 
820  0 toggle @Override
821    public DeliveryMethodTypeInfo getDeliveryMethodType(
822    String deliveryMethodTypeKey) throws DoesNotExistException,
823    InvalidParameterException, MissingParameterException,
824    OperationFailedException {
825    // TODO Auto-generated method stub
826  0 return null;
827    }
828   
 
829  0 toggle @Override
830    public List<DeliveryMethodTypeInfo> getDeliveryMethodTypes()
831    throws OperationFailedException {
832    // TODO Auto-generated method stub
833  0 return null;
834    }
835   
 
836  0 toggle @Override
837    public InstructionalFormatTypeInfo getInstructionalFormatType(
838    String instructionalFormatTypeKey)
839    throws DoesNotExistException, InvalidParameterException,
840    MissingParameterException, OperationFailedException {
841    // TODO Auto-generated method stub
842  0 return null;
843    }
844   
 
845  0 toggle @Override
846    public List<InstructionalFormatTypeInfo> getInstructionalFormatTypes()
847    throws OperationFailedException {
848    // TODO Auto-generated method stub
849  0 return null;
850    }
851   
 
852  0 toggle @Override
853    public LuCodeTypeInfo getLuCodeType(String luCodeTypeKey)
854    throws DoesNotExistException, InvalidParameterException,
855    MissingParameterException, OperationFailedException {
856    // TODO Auto-generated method stub
857  0 return null;
858    }
859   
 
860  0 toggle @Override
861    public List<LuCodeTypeInfo> getLuCodeTypes()
862    throws OperationFailedException {
863    // TODO Auto-generated method stub
864  0 return null;
865    }
866   
 
867  0 toggle @Override
868    public LuLuRelationTypeInfo getLuLuRelationType(
869    String luLuRelationTypeKey) throws OperationFailedException,
870    MissingParameterException, DoesNotExistException {
871    // TODO Auto-generated method stub
872  0 return null;
873    }
874   
 
875  0 toggle @Override
876    public List<LuLuRelationTypeInfo> getLuLuRelationTypes()
877    throws OperationFailedException {
878    // TODO Auto-generated method stub
879  0 return null;
880    }
881   
 
882  0 toggle @Override
883    public LuPublicationTypeInfo getLuPublicationType(
884    String luPublicationTypeKey) throws DoesNotExistException,
885    InvalidParameterException, MissingParameterException,
886    OperationFailedException {
887    // TODO Auto-generated method stub
888  0 return null;
889    }
890   
 
891  0 toggle @Override
892    public List<LuPublicationTypeInfo> getLuPublicationTypes()
893    throws OperationFailedException {
894    // TODO Auto-generated method stub
895  0 return null;
896    }
897   
 
898  0 toggle @Override
899    public List<String> getLuPublicationTypesForLuType(String luTypeKey)
900    throws DoesNotExistException, InvalidParameterException,
901    MissingParameterException, OperationFailedException {
902    // TODO Auto-generated method stub
903  0 return null;
904    }
905   
 
906  0 toggle @Override
907    public LuTypeInfo getLuType(String luTypeKey)
908    throws DoesNotExistException, InvalidParameterException,
909    MissingParameterException, OperationFailedException {
910    // TODO Auto-generated method stub
911  0 return null;
912    }
913   
 
914  0 toggle @Override
915    public List<LuTypeInfo> getLuTypes() throws OperationFailedException {
916    // TODO Auto-generated method stub
917  0 return null;
918    }
919   
 
920  0 toggle @Override
921    public LuiInfo getLui(String luiId) throws DoesNotExistException,
922    InvalidParameterException, MissingParameterException,
923    OperationFailedException {
924    // TODO Auto-generated method stub
925  0 return null;
926    }
927   
 
928  0 toggle @Override
929    public List<String> getLuiIdsByCluId(String cluId)
930    throws DoesNotExistException, InvalidParameterException,
931    MissingParameterException, OperationFailedException {
932    // TODO Auto-generated method stub
933  0 return null;
934    }
935   
 
936  0 toggle @Override
937    public List<String> getLuiIdsByRelation(String relatedLuiId,
938    String luLuRelationType) throws DoesNotExistException,
939    InvalidParameterException, MissingParameterException,
940    OperationFailedException {
941    // TODO Auto-generated method stub
942  0 return null;
943    }
944   
 
945  0 toggle @Override
946    public List<String> getLuiIdsInAtpByCluId(String cluId, String atpKey)
947    throws DoesNotExistException, InvalidParameterException,
948    MissingParameterException, OperationFailedException {
949    // TODO Auto-generated method stub
950  0 return null;
951    }
952   
 
953  0 toggle @Override
954    public LuiLuiRelationInfo getLuiLuiRelation(String luiLuiRelationId)
955    throws DoesNotExistException, InvalidParameterException,
956    MissingParameterException, OperationFailedException {
957    // TODO Auto-generated method stub
958  0 return null;
959    }
960   
 
961  0 toggle @Override
962    public List<LuiLuiRelationInfo> getLuiLuiRelationsByLui(String luiId)
963    throws DoesNotExistException, InvalidParameterException,
964    MissingParameterException, OperationFailedException {
965    // TODO Auto-generated method stub
966  0 return null;
967    }
968   
 
969  0 toggle @Override
970    public List<LuiInfo> getLuisByIdList(List<String> luiIdList)
971    throws DoesNotExistException, InvalidParameterException,
972    MissingParameterException, OperationFailedException {
973    // TODO Auto-generated method stub
974  0 return null;
975    }
976   
 
977  0 toggle @Override
978    public List<LuiInfo> getLuisByRelation(String relatedLuiId,
979    String luLuRelationType) throws DoesNotExistException,
980    InvalidParameterException, MissingParameterException,
981    OperationFailedException {
982    // TODO Auto-generated method stub
983  0 return null;
984    }
985   
 
986  0 toggle @Override
987    public List<LuiInfo> getLuisInAtpByCluId(String cluId, String atpKey)
988    throws DoesNotExistException, InvalidParameterException,
989    MissingParameterException, OperationFailedException {
990    // TODO Auto-generated method stub
991  0 return null;
992    }
993   
 
994  0 toggle @Override
995    public List<String> getRelatedCluIdsByCluId(String cluId,
996    String luLuRelationType) throws DoesNotExistException,
997    InvalidParameterException, MissingParameterException,
998    OperationFailedException {
999    // TODO Auto-generated method stub
1000  0 return null;
1001    }
1002   
 
1003  0 toggle @Override
1004    public List<CluInfo> getRelatedClusByCluId(String cluId,
1005    String luLuRelationType) throws DoesNotExistException,
1006    InvalidParameterException, MissingParameterException,
1007    OperationFailedException {
1008    // TODO Auto-generated method stub
1009  0 return null;
1010    }
1011   
 
1012  0 toggle @Override
1013    public List<String> getRelatedLuiIdsByLuiId(String luiId,
1014    String luLuRelationType) throws DoesNotExistException,
1015    InvalidParameterException, MissingParameterException,
1016    OperationFailedException {
1017    // TODO Auto-generated method stub
1018  0 return null;
1019    }
1020   
 
1021  0 toggle @Override
1022    public List<LuiInfo> getRelatedLuisByLuiId(String luiId,
1023    String luLuRelationType) throws DoesNotExistException,
1024    InvalidParameterException, MissingParameterException,
1025    OperationFailedException {
1026    // TODO Auto-generated method stub
1027  0 return null;
1028    }
1029   
 
1030  0 toggle @Override
1031    public List<String> getResourceRequirementsForCluId(String cluId)
1032    throws DoesNotExistException, InvalidParameterException,
1033    MissingParameterException, OperationFailedException {
1034    // TODO Auto-generated method stub
1035  0 return null;
1036    }
1037   
 
1038  0 toggle @Override
1039    public ResultUsageTypeInfo getResultUsageType(String resultUsageTypeKey)
1040    throws DoesNotExistException, InvalidParameterException,
1041    MissingParameterException, OperationFailedException {
1042    // TODO Auto-generated method stub
1043  0 return null;
1044    }
1045   
 
1046  0 toggle @Override
1047    public List<ResultUsageTypeInfo> getResultUsageTypes()
1048    throws OperationFailedException {
1049    // TODO Auto-generated method stub
1050  0 return null;
1051    }
1052   
 
1053  0 toggle @Override
1054    public Boolean isCluInCluSet(String cluId, String cluSetId)
1055    throws DoesNotExistException, InvalidParameterException,
1056    MissingParameterException, OperationFailedException,
1057    PermissionDeniedException {
1058    // TODO Auto-generated method stub
1059  0 return null;
1060    }
1061   
 
1062  0 toggle @Override
1063    public Boolean isCluSetDynamic(String cluSetId)
1064    throws DoesNotExistException, InvalidParameterException,
1065    MissingParameterException, OperationFailedException,
1066    PermissionDeniedException {
1067    // TODO Auto-generated method stub
1068  0 return null;
1069    }
1070   
 
1071  0 toggle @Override
1072    public StatusInfo removeCluFromCluSet(String cluId, String cluSetId)
1073    throws DoesNotExistException, InvalidParameterException,
1074    MissingParameterException, OperationFailedException,
1075    PermissionDeniedException, UnsupportedActionException {
1076    // TODO Auto-generated method stub
1077  0 return null;
1078    }
1079   
 
1080  0 toggle @Override
1081    public StatusInfo removeCluResourceRequirement(String resourceTypeKey,
1082    String cluId) throws DoesNotExistException,
1083    InvalidParameterException, MissingParameterException,
1084    OperationFailedException, PermissionDeniedException {
1085    // TODO Auto-generated method stub
1086  0 return null;
1087    }
1088   
 
1089  0 toggle @Override
1090    public StatusInfo removeCluSetFromCluSet(String cluSetId,
1091    String removedCluSetId) throws DoesNotExistException,
1092    InvalidParameterException, MissingParameterException,
1093    OperationFailedException, PermissionDeniedException,
1094    UnsupportedActionException {
1095    // TODO Auto-generated method stub
1096  0 return null;
1097    }
1098   
 
1099  0 toggle @Override
1100    public CluInfo updateClu(String cluId, CluInfo cluInfo)
1101    throws DataValidationErrorException, DoesNotExistException,
1102    InvalidParameterException, MissingParameterException,
1103    OperationFailedException, PermissionDeniedException,
1104    VersionMismatchException {
1105    // TODO Auto-generated method stub
1106  0 return null;
1107    }
1108   
 
1109  0 toggle @Override
1110    public CluCluRelationInfo updateCluCluRelation(String cluCluRelationId,
1111    CluCluRelationInfo cluCluRelationInfo)
1112    throws DataValidationErrorException, DoesNotExistException,
1113    InvalidParameterException, MissingParameterException,
1114    OperationFailedException, PermissionDeniedException,
1115    VersionMismatchException {
1116    // TODO Auto-generated method stub
1117  0 return null;
1118    }
1119   
 
1120  0 toggle @Override
1121    public CluLoRelationInfo updateCluLoRelation(String cluLoRelationId,
1122    CluLoRelationInfo cluLoRelationInfo)
1123    throws DataValidationErrorException, DoesNotExistException,
1124    InvalidParameterException, MissingParameterException,
1125    OperationFailedException, PermissionDeniedException,
1126    VersionMismatchException {
1127    // TODO Auto-generated method stub
1128  0 return null;
1129    }
1130   
 
1131  0 toggle @Override
1132    public CluPublicationInfo updateCluPublication(String cluPublicationId,
1133    CluPublicationInfo cluPublicationInfo)
1134    throws DataValidationErrorException, DoesNotExistException,
1135    InvalidParameterException, MissingParameterException,
1136    OperationFailedException, PermissionDeniedException,
1137    VersionMismatchException {
1138    // TODO Auto-generated method stub
1139  0 return null;
1140    }
1141   
 
1142  0 toggle @Override
1143    public CluResultInfo updateCluResult(String cluResultId,
1144    CluResultInfo cluResultInfo)
1145    throws DataValidationErrorException, DoesNotExistException,
1146    InvalidParameterException, MissingParameterException,
1147    OperationFailedException, PermissionDeniedException,
1148    VersionMismatchException {
1149    // TODO Auto-generated method stub
1150  0 return null;
1151    }
1152   
 
1153  0 toggle @Override
1154    public CluSetInfo updateCluSet(String cluSetId, CluSetInfo cluSetInfo)
1155    throws DataValidationErrorException, DoesNotExistException,
1156    InvalidParameterException, MissingParameterException,
1157    OperationFailedException, PermissionDeniedException,
1158    VersionMismatchException, UnsupportedActionException,
1159    CircularRelationshipException {
1160    // TODO Auto-generated method stub
1161  0 return null;
1162    }
1163   
 
1164  0 toggle @Override
1165    public CluInfo updateCluState(String cluId, String luState)
1166    throws DataValidationErrorException, DoesNotExistException,
1167    InvalidParameterException, MissingParameterException,
1168    OperationFailedException, PermissionDeniedException {
1169    // TODO Auto-generated method stub
1170  0 return null;
1171    }
1172   
 
1173  0 toggle @Override
1174    public LuiInfo updateLui(String luiId, LuiInfo luiInfo)
1175    throws DataValidationErrorException, DoesNotExistException,
1176    InvalidParameterException, MissingParameterException,
1177    OperationFailedException, PermissionDeniedException,
1178    VersionMismatchException {
1179    // TODO Auto-generated method stub
1180  0 return null;
1181    }
1182   
 
1183  0 toggle @Override
1184    public LuiLuiRelationInfo updateLuiLuiRelation(String luiLuiRelationId,
1185    LuiLuiRelationInfo luiLuiRelationInfo)
1186    throws DataValidationErrorException, DoesNotExistException,
1187    InvalidParameterException, MissingParameterException,
1188    OperationFailedException, PermissionDeniedException,
1189    VersionMismatchException {
1190    // TODO Auto-generated method stub
1191  0 return null;
1192    }
1193   
 
1194  0 toggle @Override
1195    public LuiInfo updateLuiState(String luiId, String luState)
1196    throws DataValidationErrorException, DoesNotExistException,
1197    InvalidParameterException, MissingParameterException,
1198    OperationFailedException, PermissionDeniedException {
1199    // TODO Auto-generated method stub
1200  0 return null;
1201    }
1202   
 
1203  0 toggle @Override
1204    public List<ValidationResultInfo> validateClu(String validationType,
1205    CluInfo cluInfo) throws DoesNotExistException,
1206    InvalidParameterException, MissingParameterException,
1207    OperationFailedException {
1208    // TODO Auto-generated method stub
1209  0 return null;
1210    }
1211   
 
1212  0 toggle @Override
1213    public List<ValidationResultInfo> validateCluCluRelation(
1214    String validationType, CluCluRelationInfo cluCluRelationInfo)
1215    throws DoesNotExistException, InvalidParameterException,
1216    MissingParameterException, OperationFailedException {
1217    // TODO Auto-generated method stub
1218  0 return null;
1219    }
1220   
 
1221  0 toggle @Override
1222    public List<ValidationResultInfo> validateCluLoRelation(
1223    String validationType, CluLoRelationInfo cluLoRelationInfo)
1224    throws DoesNotExistException, InvalidParameterException,
1225    MissingParameterException, OperationFailedException {
1226    // TODO Auto-generated method stub
1227  0 return null;
1228    }
1229   
 
1230  0 toggle @Override
1231    public List<ValidationResultInfo> validateCluPublication(
1232    String validationType, CluPublicationInfo cluPublicationInfo)
1233    throws DoesNotExistException, InvalidParameterException,
1234    MissingParameterException, OperationFailedException {
1235    // TODO Auto-generated method stub
1236  0 return null;
1237    }
1238   
 
1239  0 toggle @Override
1240    public List<ValidationResultInfo> validateCluResult(
1241    String validationType, CluResultInfo cluResultInfo)
1242    throws DoesNotExistException, InvalidParameterException,
1243    MissingParameterException, OperationFailedException {
1244    // TODO Auto-generated method stub
1245  0 return null;
1246    }
1247   
 
1248  0 toggle @Override
1249    public List<ValidationResultInfo> validateCluSet(String validationType,
1250    CluSetInfo cluSetInfo) throws DoesNotExistException,
1251    InvalidParameterException, MissingParameterException,
1252    OperationFailedException {
1253    // TODO Auto-generated method stub
1254  0 return null;
1255    }
1256   
 
1257  0 toggle @Override
1258    public List<ValidationResultInfo> validateLui(String validationType,
1259    LuiInfo luiInfo) throws DoesNotExistException,
1260    InvalidParameterException, MissingParameterException,
1261    OperationFailedException {
1262    // TODO Auto-generated method stub
1263  0 return null;
1264    }
1265   
 
1266  0 toggle @Override
1267    public List<ValidationResultInfo> validateLuiLuiRelation(
1268    String validationType, LuiLuiRelationInfo luiLuiRelationInfo)
1269    throws DoesNotExistException, InvalidParameterException,
1270    MissingParameterException, OperationFailedException {
1271    // TODO Auto-generated method stub
1272  0 return null;
1273    }
1274   
 
1275  0 toggle @Override
1276    public ObjectStructureDefinition getObjectStructure(String objectTypeKey) {
1277    // TODO Auto-generated method stub
1278  0 return null;
1279    }
1280   
 
1281  0 toggle @Override
1282    public List<String> getObjectTypes() {
1283    // TODO Auto-generated method stub
1284  0 return null;
1285    }
1286   
 
1287  0 toggle @Override
1288    public SearchCriteriaTypeInfo getSearchCriteriaType(
1289    String searchCriteriaTypeKey) throws DoesNotExistException,
1290    InvalidParameterException, MissingParameterException,
1291    OperationFailedException {
1292    // TODO Auto-generated method stub
1293  0 return null;
1294    }
1295   
 
1296  0 toggle @Override
1297    public List<SearchCriteriaTypeInfo> getSearchCriteriaTypes()
1298    throws OperationFailedException {
1299    // TODO Auto-generated method stub
1300  0 return null;
1301    }
1302   
 
1303  0 toggle @Override
1304    public SearchResultTypeInfo getSearchResultType(
1305    String searchResultTypeKey) throws DoesNotExistException,
1306    InvalidParameterException, MissingParameterException,
1307    OperationFailedException {
1308    // TODO Auto-generated method stub
1309  0 return null;
1310    }
1311   
 
1312  0 toggle @Override
1313    public List<SearchResultTypeInfo> getSearchResultTypes()
1314    throws OperationFailedException {
1315    // TODO Auto-generated method stub
1316  0 return null;
1317    }
1318   
 
1319  0 toggle @Override
1320    public SearchTypeInfo getSearchType(String searchTypeKey)
1321    throws DoesNotExistException, InvalidParameterException,
1322    MissingParameterException, OperationFailedException {
1323    // TODO Auto-generated method stub
1324  0 return null;
1325    }
1326   
 
1327  0 toggle @Override
1328    public List<SearchTypeInfo> getSearchTypes()
1329    throws OperationFailedException {
1330    // TODO Auto-generated method stub
1331  0 return null;
1332    }
1333   
 
1334  0 toggle @Override
1335    public List<SearchTypeInfo> getSearchTypesByCriteria(
1336    String searchCriteriaTypeKey) throws DoesNotExistException,
1337    InvalidParameterException, MissingParameterException,
1338    OperationFailedException {
1339    // TODO Auto-generated method stub
1340  0 return null;
1341    }
1342   
 
1343  0 toggle @Override
1344    public List<SearchTypeInfo> getSearchTypesByResult(
1345    String searchResultTypeKey) throws DoesNotExistException,
1346    InvalidParameterException, MissingParameterException,
1347    OperationFailedException {
1348    // TODO Auto-generated method stub
1349  0 return null;
1350    }
1351   
 
1352  0 toggle @Override
1353    public SearchResult search(SearchRequest searchRequest)
1354    throws MissingParameterException {
1355    // TODO Auto-generated method stub
1356  0 return null;
1357    }
1358   
 
1359  0 toggle @Override
1360    public CluInfo createNewCluVersion(String cluId, String versionComment)
1361    throws DataValidationErrorException, DoesNotExistException,
1362    InvalidParameterException, MissingParameterException,
1363    OperationFailedException, PermissionDeniedException,
1364    VersionMismatchException {
1365    // TODO Auto-generated method stub
1366  0 return null;
1367    }
1368   
 
1369  0 toggle @Override
1370    public StatusInfo setCurrentCluVersion(String cluVersionId,
1371    Date currentVersionStart) throws DoesNotExistException,
1372    InvalidParameterException, MissingParameterException,
1373    IllegalVersionSequencingException, OperationFailedException,
1374    PermissionDeniedException {
1375    // TODO Auto-generated method stub
1376  0 return null;
1377    }
1378   
 
1379  8 toggle @Override
1380    public VersionDisplayInfo getCurrentVersion(String refObjectTypeURI,
1381    String refObjectId) throws DoesNotExistException,
1382    InvalidParameterException, MissingParameterException,
1383    OperationFailedException, PermissionDeniedException {
1384  8 VersionDisplayInfo versionInfo = new VersionDisplayInfo();
1385  8 versionInfo.setId(refObjectId);
1386  8 return versionInfo;
1387    }
1388   
 
1389  0 toggle @Override
1390    public VersionDisplayInfo getCurrentVersionOnDate(
1391    String refObjectTypeURI, String refObjectId, Date date)
1392    throws DoesNotExistException, InvalidParameterException,
1393    MissingParameterException, OperationFailedException,
1394    PermissionDeniedException {
1395    // TODO Auto-generated method stub
1396  0 return null;
1397    }
1398   
 
1399  0 toggle @Override
1400    public VersionDisplayInfo getFirstVersion(String refObjectTypeURI,
1401    String refObjectId) throws DoesNotExistException,
1402    InvalidParameterException, MissingParameterException,
1403    OperationFailedException, PermissionDeniedException {
1404    // TODO Auto-generated method stub
1405  0 return null;
1406    }
1407   
 
1408  0 toggle @Override
1409    public VersionDisplayInfo getLatestVersion(String refObjectTypeURI,
1410    String refObjectId) throws DoesNotExistException,
1411    InvalidParameterException, MissingParameterException,
1412    OperationFailedException, PermissionDeniedException {
1413    // TODO Auto-generated method stub
1414  0 return null;
1415    }
1416   
 
1417  0 toggle @Override
1418    public VersionDisplayInfo getVersionBySequenceNumber(
1419    String refObjectTypeURI, String refObjectId, Long sequence)
1420    throws DoesNotExistException, InvalidParameterException,
1421    MissingParameterException, OperationFailedException,
1422    PermissionDeniedException {
1423    // TODO Auto-generated method stub
1424  0 return null;
1425    }
1426   
 
1427  0 toggle @Override
1428    public List<VersionDisplayInfo> getVersions(String refObjectTypeURI,
1429    String refObjectId) throws DoesNotExistException,
1430    InvalidParameterException, MissingParameterException,
1431    OperationFailedException, PermissionDeniedException {
1432    // TODO Auto-generated method stub
1433  0 return null;
1434    }
1435   
 
1436  0 toggle @Override
1437    public List<VersionDisplayInfo> getVersionsInDateRange(
1438    String refObjectTypeURI, String refObjectId, Date from, Date to)
1439    throws DoesNotExistException, InvalidParameterException,
1440    MissingParameterException, OperationFailedException,
1441    PermissionDeniedException {
1442    // TODO Auto-generated method stub
1443  0 return null;
1444    }
1445   
1446    }
1447    }