Merge "Increase timeout for waiting for broker service in sal-binding-it."
[controller.git] / opendaylight / md-sal / sal-binding-api / src / main / java / org / opendaylight / controller / sal / binding / api / mount / MountProviderInstance.java
1 /*
2  * Copyright (c) 2014 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.controller.sal.binding.api.mount;
9
10 import org.opendaylight.controller.sal.binding.api.NotificationProviderService;
11 import org.opendaylight.controller.sal.binding.api.RpcProviderRegistry;
12 import org.opendaylight.controller.sal.binding.api.data.DataProviderService;
13
14 /**
15  * Provider's version of Mount Point, this version allows access to MD-SAL
16  * services specific for this mountpoint and registration / provision of
17  * interfaces for mount point.
18  * 
19  * @author ttkacik
20  * 
21  */
22 public interface MountProviderInstance //
23         extends //
24         MountInstance, //
25         DataProviderService, //
26         RpcProviderRegistry, //
27         NotificationProviderService {
28
29 }