db85ed1eebb62fe2433fe9fd5406c21cd8e0c3c5
[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 javax.inject.Inject;
11 import javax.inject.Singleton;
12 import org.apache.aries.blueprint.annotation.service.Reference;
13 import org.opendaylight.mdsal.dom.api.DOMMountPointService;
14 import org.opendaylight.restconf.nb.rfc8040.handlers.SchemaContextHandler;
15 import org.opendaylight.restconf.nb.rfc8040.services.wrapper.ServicesWrapper;
16
17 @Singleton
18 public class RestconfApplication extends AbstractRestconfApplication<ServicesWrapper> {
19     @Inject
20     public RestconfApplication(final SchemaContextHandler schemaContextHandler,
21             @Reference final DOMMountPointService mountPointService, final ServicesWrapper servicesNotifWrapper) {
22         super(schemaContextHandler, mountPointService, servicesNotifWrapper);
23     }
24 }