Updated implementation of broker (data services, generated code), added Integration...
[controller.git] / opendaylight / md-sal / sal-binding-api / src / main / java / org / opendaylight / controller / sal / binding / api / mount / MountProviderInstance.java
1 package org.opendaylight.controller.sal.binding.api.mount;
2
3 import org.opendaylight.controller.sal.binding.api.NotificationProviderService;
4 import org.opendaylight.controller.sal.binding.api.RpcProviderRegistry;
5 import org.opendaylight.controller.sal.binding.api.data.DataProviderService;
6
7 /**
8  * Provider's version of Mount Point, this version allows access to MD-SAL
9  * services specific for this mountpoint and registration / provision of
10  * interfaces for mount point.
11  * 
12  * @author ttkacik
13  * 
14  */
15 public interface MountProviderInstance //
16         extends //
17         MountInstance, //
18         DataProviderService, //
19         RpcProviderRegistry, //
20         NotificationProviderService {
21
22 }