Remove RestConnectorProvider
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / RestconfApplication.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.restconf.nb.rfc8040;
9
10 import com.google.common.collect.ImmutableSet;
11 import java.util.HashSet;
12 import java.util.Set;
13 import javax.ws.rs.core.Application;
14 import org.opendaylight.restconf.nb.rfc8040.handlers.DOMMountPointServiceHandler;
15 import org.opendaylight.restconf.nb.rfc8040.handlers.SchemaContextHandler;
16 import org.opendaylight.restconf.nb.rfc8040.jersey.providers.JsonNormalizedNodeBodyReader;
17 import org.opendaylight.restconf.nb.rfc8040.jersey.providers.NormalizedNodeJsonBodyWriter;
18 import org.opendaylight.restconf.nb.rfc8040.jersey.providers.NormalizedNodeXmlBodyWriter;
19 import org.opendaylight.restconf.nb.rfc8040.jersey.providers.XmlNormalizedNodeBodyReader;
20 import org.opendaylight.restconf.nb.rfc8040.jersey.providers.patch.JsonToPatchBodyReader;
21 import org.opendaylight.restconf.nb.rfc8040.jersey.providers.patch.PatchJsonBodyWriter;
22 import org.opendaylight.restconf.nb.rfc8040.jersey.providers.patch.PatchXmlBodyWriter;
23 import org.opendaylight.restconf.nb.rfc8040.jersey.providers.patch.XmlToPatchBodyReader;
24 import org.opendaylight.restconf.nb.rfc8040.jersey.providers.schema.SchemaExportContentYangBodyWriter;
25 import org.opendaylight.restconf.nb.rfc8040.jersey.providers.schema.SchemaExportContentYinBodyWriter;
26 import org.opendaylight.restconf.nb.rfc8040.services.wrapper.ServicesWrapper;
27
28 public class RestconfApplication extends Application {
29     private final SchemaContextHandler schemaContextHandler = SchemaContextHandler.instance();
30     private final DOMMountPointServiceHandler mountPointServiceHandler = DOMMountPointServiceHandler.instance();
31
32     @Override
33     public Set<Class<?>> getClasses() {
34         return ImmutableSet.<Class<?>>builder()
35                 .add(NormalizedNodeJsonBodyWriter.class).add(NormalizedNodeXmlBodyWriter.class)
36                 .add(SchemaExportContentYinBodyWriter.class).add(SchemaExportContentYangBodyWriter.class)
37                 .add(PatchJsonBodyWriter.class).add(PatchXmlBodyWriter.class)
38                 .build();
39     }
40
41     @Override
42     public Set<Object> getSingletons() {
43         final Set<Object> singletons = new HashSet<>();
44         singletons.add(ServicesWrapper.getInstance());
45         singletons.add(new JsonNormalizedNodeBodyReader(schemaContextHandler, mountPointServiceHandler));
46         singletons.add(new JsonToPatchBodyReader(schemaContextHandler, mountPointServiceHandler));
47         singletons.add(new XmlNormalizedNodeBodyReader(schemaContextHandler, mountPointServiceHandler));
48         singletons.add(new XmlToPatchBodyReader(schemaContextHandler, mountPointServiceHandler));
49         return singletons;
50     }
51 }