X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-dom-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fcore%2Fapi%2FProvider.java;fp=opendaylight%2Fmd-sal%2Fsal-dom-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fcore%2Fapi%2FProvider.java;h=e2df70baeac05a3a1fc113de6205a0ccc504206c;hp=0000000000000000000000000000000000000000;hb=fe024ad74b8656c3ee61b9ddff6009a779aa2189;hpb=437c1bdb967072319e81774bdcf570b2fb0f7b89 diff --git a/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/sal/core/api/Provider.java b/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/sal/core/api/Provider.java new file mode 100644 index 0000000000..e2df70baea --- /dev/null +++ b/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/sal/core/api/Provider.java @@ -0,0 +1,69 @@ +/* + * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ +package org.opendaylight.controller.sal.core.api; + +import java.util.Collection; + +import org.opendaylight.controller.sal.core.api.Broker.ProviderSession; + +/** + * + * Defines the component of controller and supplies additional metadata. A + * component of the controller or application supplies a concrete implementation + * of this interface. + * + *

+ * A user-implemented component (application) which faciliates the SAL and SAL + * services to access infrastructure services and to provide functionality to + * {@link Consumer}s and other providers. + * + * + */ +public interface Provider { + + /** + * Callback signaling initialization of the provider session to the SAL. + * + *

+ * The provider MUST use the session for all communication with SAL + * or retrieving SAL infrastructure services. + * + *

+ * This method is invoked by {@link Broker#registerConsumer(Consumer)} + * + * @param session + * Unique session between provider and SAL. + */ + public void onSessionInitiated(ProviderSession session); + + /** + * Gets a set of implementations of provider functionality to be registered + * into system during the provider registration to the SAL. + * + *

+ * This method is invoked by {@link Broker#registerProvider(Provider)} to + * learn the initial provided functionality + * + * @return Set of provider's functionality. + */ + public Collection getProviderFunctionality(); + + /** + * Functionality provided by the {@link Provider} + * + *

+ * Marker interface used to mark the interfaces describing specific + * functionality which could be exposed by providers to other components. + * + + * + */ + public interface ProviderFunctionality { + + } +}