Delay snapshot backed transaction ready error
[controller.git] / opendaylight / md-sal / sal-dom-spi / src / main / java / org / opendaylight / controller / sal / core / spi / BrokerModule.java
index 99438c86b86235efae6fcd12d8c8149c5cfd62a3..670598d39e6b28099888cf0a61722738933239ec 100644 (file)
@@ -1,27 +1,27 @@
-/*\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.core.spi;\r
-\r
-import java.util.Set;\r
-\r
-import org.opendaylight.controller.sal.core.api.BrokerService;\r
-import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession;\r
-import org.opendaylight.controller.sal.core.api.Consumer.ConsumerFunctionality;\r
-import org.opendaylight.controller.sal.core.api.Provider.ProviderFunctionality;\r
-\r
-public interface BrokerModule {\r
-\r
-    Set<Class<? extends BrokerService>> getProvidedServices();\r
-\r
-    Set<Class<? extends ConsumerFunctionality>> getSupportedConsumerFunctionality();\r
-\r
-    <T extends BrokerService> T getServiceForSession(Class<T> service,\r
-            ConsumerSession session);\r
-\r
-    Set<Class<? extends ProviderFunctionality>> getSupportedProviderFunctionality();\r
-}\r
+/*
+ * 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.spi;
+
+import java.util.Set;
+
+import org.opendaylight.controller.sal.core.api.BrokerService;
+import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession;
+import org.opendaylight.controller.sal.core.api.Consumer.ConsumerFunctionality;
+import org.opendaylight.controller.sal.core.api.Provider.ProviderFunctionality;
+
+public interface BrokerModule {
+
+    Set<Class<? extends BrokerService>> getProvidedServices();
+
+    Set<Class<? extends ConsumerFunctionality>> getSupportedConsumerFunctionality();
+
+    <T extends BrokerService> T getServiceForSession(Class<T> service,
+            ConsumerSession session);
+
+    Set<Class<? extends ProviderFunctionality>> getSupportedProviderFunctionality();
+}