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
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.spi;
9
10 import java.util.Set;
11
12 import org.opendaylight.controller.sal.core.api.BrokerService;
13 import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession;
14 import org.opendaylight.controller.sal.core.api.Consumer.ConsumerFunctionality;
15 import org.opendaylight.controller.sal.core.api.Provider.ProviderFunctionality;
16
17 public interface BrokerModule {
18
19     Set<Class<? extends BrokerService>> getProvidedServices();
20
21     Set<Class<? extends ConsumerFunctionality>> getSupportedConsumerFunctionality();
22
23     <T extends BrokerService> T getServiceForSession(Class<T> service,
24             ConsumerSession session);
25
26     Set<Class<? extends ProviderFunctionality>> getSupportedProviderFunctionality();
27 }