Merge "introduce Rfc8040RestConfWiring for standalone (simple) environments"
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / handlers / NotificationServiceHandler.java
1 /*
2  * Copyright (c) 2016 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.handlers;
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.DOMNotificationService;
14
15 @Singleton
16 public class NotificationServiceHandler implements Handler<DOMNotificationService> {
17
18     private final DOMNotificationService notificationService;
19
20     /**
21      * Set DOMNotificationService.
22      *
23      * @param notificationService
24      *             DOMNotificationService
25      */
26     @Inject
27     public NotificationServiceHandler(final @Reference DOMNotificationService notificationService) {
28         this.notificationService = notificationService;
29     }
30
31     @Override
32     public DOMNotificationService get() {
33         return this.notificationService;
34     }
35 }