Binding QName constants to YANG Library model
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / RestconfNotifApplication.java
1 /*
2  * Copyright (c) 2020 Lumina Networks, Inc. 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.opendaylight.restconf.nb.rfc8040.handlers.DOMMountPointServiceHandler;
13 import org.opendaylight.restconf.nb.rfc8040.handlers.SchemaContextHandler;
14 import org.opendaylight.restconf.nb.rfc8040.services.wrapper.ServicesNotifWrapper;
15
16 /**
17  * Restconf Application extends {@link AbstractRestconfApplication}. Is used for sending SSE.
18  */
19 @Singleton
20 public class RestconfNotifApplication extends AbstractRestconfApplication<ServicesNotifWrapper> {
21     @Inject
22     public RestconfNotifApplication(final SchemaContextHandler schemaContextHandler,
23             final DOMMountPointServiceHandler mountPointServiceHandler,
24             final ServicesNotifWrapper servicesNotifWrapper) {
25         super(schemaContextHandler, mountPointServiceHandler, servicesNotifWrapper);
26     }
27 }