]> git.aero2k.de Git - tmp/jakarta-migration.git/blob
6e59c9d54baaef3ab4e2b10ea4f85c72d0913597
[tmp/jakarta-migration.git] /
1 package org.collectionspace.services.systeminfo;
2
3 import java.util.List;
4
5 import org.collectionspace.services.common.api.RefName.RefNameInterface;
6 import org.collectionspace.services.common.context.ServiceContext;
7 import org.collectionspace.services.common.document.AbstractMultipartDocumentHandlerImpl;
8 import org.collectionspace.services.common.document.DocumentException;
9 import org.collectionspace.services.common.document.DocumentFilter;
10 import org.collectionspace.services.common.document.DocumentWrapper;
11 import org.collectionspace.services.lifecycle.Lifecycle;
12 import org.collectionspace.services.lifecycle.TransitionDef;
13 import org.nuxeo.ecm.core.api.DocumentModel;
14
15 /*
16  * The StructedDate service uses non of these method.  It exists only because it is needed to create a proper ServiceContext instance.
17  */
18 public class SystemInfoDocumentHandler extends AbstractMultipartDocumentHandlerImpl<SystemInfoCommon, List<SystemInfoCommon>, SystemInfoCommon, List<SystemInfoCommon>> {
19
20         @Override
21         public Lifecycle getLifecycle() {
22                 throw new RuntimeException("Unimplemented method.");
23         }
24
25         @Override
26         public Lifecycle getLifecycle(String serviceObjectName) {
27                 throw new RuntimeException("Unimplemented method.");
28         }
29
30         @Override
31         public void handleWorkflowTransition(ServiceContext ctx, DocumentWrapper<DocumentModel> wrapDoc,
32                         TransitionDef transitionDef) throws Exception {
33                 throw new RuntimeException("Unimplemented method.");
34         }
35
36         @Override
37         public void handleCreate(DocumentWrapper<SystemInfoCommon> wrapDoc) throws Exception {
38                 throw new RuntimeException("Unimplemented method.");
39         }
40
41         @Override
42         public void handleUpdate(DocumentWrapper<SystemInfoCommon> wrapDoc) throws Exception {
43                 throw new RuntimeException("Unimplemented method.");
44         }
45
46         @Override
47         public void handleGet(DocumentWrapper<SystemInfoCommon> wrapDoc) throws Exception {
48                 throw new RuntimeException("Unimplemented method.");
49         }
50
51         @Override
52         public void handleGetAll(DocumentWrapper<List<SystemInfoCommon>> wrapDoc) throws Exception {
53                 throw new RuntimeException("Unimplemented method.");
54         }
55
56         @Override
57         public void extractAllParts(DocumentWrapper<SystemInfoCommon> wrapDoc) throws Exception {
58                 throw new RuntimeException("Unimplemented method.");
59         }
60
61         @Override
62         public void fillAllParts(DocumentWrapper<SystemInfoCommon> wrapDoc,
63                         org.collectionspace.services.common.document.DocumentHandler.Action action) throws Exception {
64                 throw new RuntimeException("Unimplemented method.");
65         }
66
67         @Override
68         public SystemInfoCommon extractCommonPart(DocumentWrapper<SystemInfoCommon> wrapDoc) throws Exception {
69                 throw new RuntimeException("Unimplemented method.");
70         }
71
72         @Override
73         public void fillCommonPart(SystemInfoCommon obj, DocumentWrapper<SystemInfoCommon> wrapDoc)
74                         throws Exception {
75                 throw new RuntimeException("Unimplemented method.");
76         }
77
78         @Override
79         public List<SystemInfoCommon> extractCommonPartList(DocumentWrapper<List<SystemInfoCommon>> wrapDoc)
80                         throws Exception {
81                 throw new RuntimeException("Unimplemented method.");
82         }
83
84         @Override
85         public List<SystemInfoCommon> extractPagingInfo(List<SystemInfoCommon> theCommonList,
86                         DocumentWrapper<List<SystemInfoCommon>> wrapDoc) throws Exception {
87                 throw new RuntimeException("Unimplemented method.");
88         }
89
90         @Override
91         public SystemInfoCommon getCommonPart() {
92                 throw new RuntimeException("Unimplemented method.");
93         }
94
95         @Override
96         public void setCommonPart(SystemInfoCommon obj) {
97                 throw new RuntimeException("Unimplemented method.");
98         }
99
100         @Override
101         public List<SystemInfoCommon> getCommonPartList() {
102                 throw new RuntimeException("Unimplemented method.");
103         }
104
105         @Override
106         public void setCommonPartList(List<SystemInfoCommon> obj) {
107                 throw new RuntimeException("Unimplemented method.");
108         }
109
110         @Override
111         public String getQProperty(String prop) throws DocumentException {
112                 throw new RuntimeException("Unimplemented method.");
113         }
114
115         @Override
116         protected String getRefnameDisplayName(DocumentWrapper<SystemInfoCommon> docWrapper) {
117                 throw new RuntimeException("Unimplemented method.");
118         }
119
120         @Override
121         protected RefNameInterface getRefName(DocumentWrapper<SystemInfoCommon> docWrapper, String tenantName,
122                         String serviceName) {
123                 throw new RuntimeException("Unimplemented method.");
124         }
125
126         @Override
127         public DocumentFilter createDocumentFilter() {
128                 throw new RuntimeException("Unimplemented method.");
129         }
130 }