Initial opendaylight infrastructure commit!!
[controller.git] / opendaylight / sal / yang-prototype / sal / sal-binding-api / src / main / java / org / opendaylight / controller / sal / binding / api / BindingAwareProvider.java
diff --git a/opendaylight/sal/yang-prototype/sal/sal-binding-api/src/main/java/org/opendaylight/controller/sal/binding/api/BindingAwareProvider.java b/opendaylight/sal/yang-prototype/sal/sal-binding-api/src/main/java/org/opendaylight/controller/sal/binding/api/BindingAwareProvider.java
new file mode 100644 (file)
index 0000000..565c3d2
--- /dev/null
@@ -0,0 +1,68 @@
+/*\r
+ * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.\r
+ *\r
+ * This program and the accompanying materials are made available under the\r
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
+ * and is available at http://www.eclipse.org/legal/epl-v10.html\r
+ */\r
+package org.opendaylight.controller.sal.binding.api;\r
+\r
+import java.util.Collection;\r
+\r
+import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ConsumerSession;\r
+import org.opendaylight.controller.yang.binding.RpcService;\r
+\r
+\r
+/**\r
+ * \r
+ * Defines the component of controller and supplies additional metadata. A\r
+ * component of the controller or application supplies a concrete implementation\r
+ * of this interface.\r
+ * \r
+ * <p>\r
+ * A user-implemented component (application) which facilitates the SAL and SAL\r
+ * services to access infrastructure services and to provide functionality to\r
+ * {@link Consumer}s and other providers.\r
+ * \r
+\r
+ * \r
+ */\r
+public interface BindingAwareProvider {\r
+\r
+    void onSessionInitialized(ConsumerSession session);\r
+\r
+    /**\r
+     * Returns a set of provided implementations of YANG modules and their rpcs.\r
+     * \r
+     * \r
+     * @return Set of provided implementation of YANG modules and their Rpcs\r
+     */\r
+    Collection<? extends RpcService> getImplementations();\r
+\r
+    /**\r
+     * Gets a set of implementations of provider functionality to be registered\r
+     * into system during the provider registration to the SAL.\r
+     * \r
+     * <p>\r
+     * This method is invoked by {@link Broker#registerProvider(Provider)} to\r
+     * learn the initial provided functionality\r
+     * \r
+     * @return Set of provider's functionality.\r
+     */\r
+    Collection<? extends ProviderFunctionality> getFunctionality();\r
+\r
+    /**\r
+     * Functionality provided by the {@link BindingAwareProvider}\r
+     * \r
+     * <p>\r
+     * Marker interface used to mark the interfaces describing specific\r
+     * functionality which could be exposed by providers to other components.\r
+     * \r
+\r
+     * \r
+     */\r
+    public interface ProviderFunctionality {\r
+\r
+    }\r
+\r
+}\r