d91a136880c49fe7c4f1611d6c18cb26a0ea6d25
[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 import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession;
12 import org.opendaylight.controller.sal.core.api.BrokerService;
13 import org.opendaylight.controller.sal.core.api.Consumer.ConsumerFunctionality;
14 import org.opendaylight.controller.sal.core.api.Provider.ProviderFunctionality;
15
16 /**
17  * Deprecated.
18  *
19  * @deprecated Use blueprint instead for code wiring.
20  */
21 @Deprecated
22 public interface BrokerModule {
23
24     Set<Class<? extends BrokerService>> getProvidedServices();
25
26     Set<Class<? extends ConsumerFunctionality>> getSupportedConsumerFunctionality();
27
28     <T extends BrokerService> T getServiceForSession(Class<T> service,
29             ConsumerSession session);
30
31     Set<Class<? extends ProviderFunctionality>> getSupportedProviderFunctionality();
32 }