Merge "Strong password check to consider underscore as a special character"
[controller.git] / opendaylight / md-sal / sal-dom-spi / src / main / java / org / opendaylight / controller / sal / core / spi / BrokerModule.java
1 /*\r
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.\r
3  *\r
4  * This program and the accompanying materials are made available under the\r
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
6  * and is available at http://www.eclipse.org/legal/epl-v10.html\r
7  */\r
8 package org.opendaylight.controller.sal.core.spi;\r
9 \r
10 import java.util.Set;\r
11 \r
12 import org.opendaylight.controller.sal.core.api.BrokerService;\r
13 import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession;\r
14 import org.opendaylight.controller.sal.core.api.Consumer.ConsumerFunctionality;\r
15 import org.opendaylight.controller.sal.core.api.Provider.ProviderFunctionality;\r
16 \r
17 public interface BrokerModule {\r
18 \r
19     Set<Class<? extends BrokerService>> getProvidedServices();\r
20 \r
21     Set<Class<? extends ConsumerFunctionality>> getSupportedConsumerFunctionality();\r
22 \r
23     <T extends BrokerService> T getServiceForSession(Class<T> service,\r
24             ConsumerSession session);\r
25 \r
26     Set<Class<? extends ProviderFunctionality>> getSupportedProviderFunctionality();\r
27 }\r