72968e616311a083be36924307ed76386e144b74
[controller.git] / opendaylight / md-sal / sal-dom-api / src / main / java / org / opendaylight / controller / sal / core / api / Provider.java
1 /*
2  * Copyright (c) 2013 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.core.api;
9
10 import java.util.Collection;
11 import org.opendaylight.controller.sal.core.api.Broker.ProviderSession;
12
13 /**
14  * Defines the component of controller and supplies additional metadata. A
15  * component of the controller or application supplies a concrete implementation
16  * of this interface.
17  *
18  * <p>
19  * A user-implemented component (application) which facilitates the SAL and SAL
20  * services to access infrastructure services and to provide functionality to
21  * {@link Consumer}s and other providers.
22  *
23  * @deprecated Use blueprint instead for code wiring.
24  */
25 @Deprecated
26 public interface Provider {
27
28     /**
29      * Callback signaling initialization of the provider session to the SAL.
30      *
31      * <p>
32      * The provider <b>MUST use the session</b> for all communication with SAL
33      * or retrieving SAL infrastructure services.
34      *
35      * <p>
36      * This method is invoked by {@link Broker#registerConsumer(Consumer)}
37      *
38      * @param session
39      *            Unique session between provider and SAL.
40      */
41     void onSessionInitiated(ProviderSession session);
42
43     /**
44      * Deprecated.
45      *
46      * @deprecated - No longer used or needed. Suggested implementation until removed:
47      * {@code
48      * public Collection<ProviderFunctionality> getProviderFunctionality() {
49      *  return Collections.emptySet();
50      * }
51      * }
52      */
53     @Deprecated
54     Collection<ProviderFunctionality> getProviderFunctionality();
55
56     /**
57      * Deprecated.
58      *
59      * @deprecated - no longer used or needed
60      */
61     @Deprecated
62     interface ProviderFunctionality {
63
64     }
65 }