Bug 5527 - Re-implement ControllerContext.toInstanceIdentifier() method
[netconf.git] / restconf / sal-rest-connector / src / main / java / org / opendaylight / restconf / rest / handlers / impl / DOMMountPointServiceHandlerImpl.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.rest.handlers.impl;
9
10 import org.opendaylight.controller.md.sal.dom.api.DOMMountPointService;
11 import org.opendaylight.restconf.rest.handlers.api.DOMMountPointServiceHandler;
12
13 /**
14  * Implementation of {@link DOMMountPointServiceHandler}
15  *
16  */
17 public class DOMMountPointServiceHandlerImpl implements DOMMountPointServiceHandler {
18
19     private DOMMountPointService domMountPointService;
20
21     @Override
22     public DOMMountPointService getDOMMountPointService() {
23         return this.domMountPointService;
24     }
25
26     @Override
27     public void setDOMMountPointService(final DOMMountPointService domMountPointService) {
28         this.domMountPointService = domMountPointService;
29
30     }
31
32 }