Introduce restconf.server.{api,spi,mdsal}
[netconf.git] / restconf / restconf-nb / 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 java.util.Set;
11 import javax.ws.rs.core.Application;
12 import org.opendaylight.mdsal.dom.api.DOMActionService;
13 import org.opendaylight.mdsal.dom.api.DOMDataBroker;
14 import org.opendaylight.mdsal.dom.api.DOMMountPointService;
15 import org.opendaylight.mdsal.dom.api.DOMNotificationService;
16 import org.opendaylight.mdsal.dom.api.DOMSchemaService;
17 import org.opendaylight.restconf.nb.rfc8040.databind.DatabindProvider;
18 import org.opendaylight.restconf.nb.rfc8040.jersey.providers.JsonNormalizedNodeBodyWriter;
19 import org.opendaylight.restconf.nb.rfc8040.jersey.providers.JsonPatchStatusBodyWriter;
20 import org.opendaylight.restconf.nb.rfc8040.jersey.providers.XmlNormalizedNodeBodyWriter;
21 import org.opendaylight.restconf.nb.rfc8040.jersey.providers.XmlPatchStatusBodyWriter;
22 import org.opendaylight.restconf.nb.rfc8040.jersey.providers.YangSchemaExportBodyWriter;
23 import org.opendaylight.restconf.nb.rfc8040.jersey.providers.YinSchemaExportBodyWriter;
24 import org.opendaylight.restconf.nb.rfc8040.jersey.providers.errors.RestconfDocumentedExceptionMapper;
25 import org.opendaylight.restconf.nb.rfc8040.rests.services.impl.MdsalRestconfServer;
26 import org.opendaylight.restconf.nb.rfc8040.rests.services.impl.RestconfDataServiceImpl;
27 import org.opendaylight.restconf.nb.rfc8040.rests.services.impl.RestconfImpl;
28 import org.opendaylight.restconf.nb.rfc8040.rests.services.impl.RestconfInvokeOperationsServiceImpl;
29 import org.opendaylight.restconf.nb.rfc8040.rests.services.impl.RestconfOperationsServiceImpl;
30 import org.opendaylight.restconf.nb.rfc8040.rests.services.impl.RestconfSchemaServiceImpl;
31
32 final class RestconfApplication extends Application {
33     private final Set<Object> singletons;
34
35     RestconfApplication(final DatabindProvider databindProvider, final MdsalRestconfServer server,
36             final DOMMountPointService mountPointService, final DOMDataBroker dataBroker,
37             final DOMActionService actionService, final DOMNotificationService notificationService,
38             final DOMSchemaService domSchemaService) {
39         singletons = Set.of(
40             new RestconfDocumentedExceptionMapper(databindProvider),
41             new RestconfDataServiceImpl(databindProvider, server, actionService),
42             new RestconfInvokeOperationsServiceImpl(server),
43             new RestconfOperationsServiceImpl(server),
44             new RestconfSchemaServiceImpl(domSchemaService, mountPointService),
45             new RestconfImpl(databindProvider));
46     }
47
48     @Override
49     public Set<Class<?>> getClasses() {
50         return Set.of(
51             JsonNormalizedNodeBodyWriter.class, XmlNormalizedNodeBodyWriter.class,
52             YinSchemaExportBodyWriter.class, YangSchemaExportBodyWriter.class,
53             JsonPatchStatusBodyWriter.class, XmlPatchStatusBodyWriter.class);
54     }
55
56     @Override
57     public Set<Object> getSingletons() {
58         return singletons;
59     }
60 }