1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.common.spring;
17
18 import java.io.Serializable;
19 import java.util.List;
20
21 import javax.jws.WebMethod;
22 import javax.jws.WebParam;
23 import javax.xml.ws.RequestWrapper;
24 import javax.xml.ws.ResponseWrapper;
25
26 import org.kuali.student.r1.common.dictionary.dto.ObjectStructureDefinition;
27 import org.kuali.student.r1.common.dictionary.old.dto.ObjectStructure;
28 import org.kuali.student.r1.common.dictionary.service.DictionaryService;
29 import org.springframework.beans.BeansException;
30 import org.springframework.beans.factory.BeanFactory;
31 import org.springframework.beans.factory.BeanFactoryAware;
32
33
34
35
36
37
38
39 public class FakeDictionaryServiceImpl extends AbstractFakeService implements DictionaryService, Serializable {
40
41
42
43 @Override
44 @WebMethod
45 @RequestWrapper(className = "org.kuali.student.r1.common.dictionary.service.jaxws.GetObjectTypes", targetNamespace = "http://student.kuali.org/wsdl/dictionary")
46 @ResponseWrapper(className = "org.kuali.student.r1.common.dictionary.service.jaxws.GetObjectTypesResponse", targetNamespace = "http://student.kuali.org/wsdl/dictionary")
47 public List<String> getObjectTypes() {
48
49 return null;
50 }
51
52 @Override
53 @WebMethod
54 @RequestWrapper(className = "org.kuali.student.r1.common.dictionary.service.jaxws.GetObjectStructure", targetNamespace = "http://student.kuali.org/wsdl/dictionary")
55 @ResponseWrapper(className = "org.kuali.student.r1.common.dictionary.service.jaxws.GetObjectStructureResponse", targetNamespace = "http://student.kuali.org/wsdl/dictionary")
56 public ObjectStructureDefinition getObjectStructure(@WebParam(name = "objectTypeKey") String objectTypeKey) {
57
58 return null;
59 }
60
61 @Override
62 public String toString() {
63 return getClass().getName();
64 }
65
66
67 }