Merge "introduce Rfc8040RestConfWiring for standalone (simple) environments"
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / handlers / RpcServiceHandler.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.DOMRpcService;
14
15 /**
16  * Implementation of {@link RpcServiceHandler}.
17  */
18 @Singleton
19 public class RpcServiceHandler implements Handler<DOMRpcService> {
20     private final DOMRpcService rpcService;
21
22     @Inject
23     public RpcServiceHandler(final @Reference DOMRpcService rpcService) {
24         this.rpcService = rpcService;
25     }
26
27     @Override
28     public DOMRpcService get() {
29         return this.rpcService;
30     }
31 }