Bug 5527 - Re-implement ControllerContext.toInstanceIdentifier() method
[netconf.git] / restconf / sal-rest-connector / src / main / java / org / opendaylight / restconf / rest / handlers / api / DOMMountPointServiceHandler.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.api;
9
10 import org.opendaylight.controller.md.sal.dom.api.DOMMountPointService;
11
12 /**
13  * Handling dom mount point service:
14  * <ul>
15  * <li>Retention
16  * <li>Set
17  * </ul>
18  */
19 public interface DOMMountPointServiceHandler {
20
21     /**
22      * Get the {@link DOMMountPointService}
23      *
24      * @return {@link DOMMountPointService}
25      */
26     DOMMountPointService getDOMMountPointService();
27
28     /**
29      * Set {@link DOMMountPointService}
30      *
31      * @param domMountPointService
32      *            - {@link DOMMountPointService}
33      */
34     void setDOMMountPointService(DOMMountPointService domMountPointService);
35 }