X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-dom-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fcore%2Fapi%2FConsumer.java;fp=opendaylight%2Fmd-sal%2Fsal-dom-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fcore%2Fapi%2FConsumer.java;h=0000000000000000000000000000000000000000;hb=178d7d60449f221af2615c361bd4fefbe338c613;hp=0e398e557827aac1c2a4a0f2c8253e0b9450258f;hpb=3f7ac86f0548d587e88ba43e03ec25cc83eed6cf;p=controller.git diff --git a/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/sal/core/api/Consumer.java b/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/sal/core/api/Consumer.java deleted file mode 100644 index 0e398e5578..0000000000 --- a/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/sal/core/api/Consumer.java +++ /dev/null @@ -1,64 +0,0 @@ -/* - * 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.api; - -import java.util.Collection; -import org.opendaylight.controller.sal.core.api.Broker.ConsumerSession; - -/** - * Defines the component of controller and supplies additional metadata. A - * component of the controller or application supplies a concrete implementation - * of this interface. - * - *

- * A user-implemented component (application) which facilitates the SAL and SAL - * services to access infrastructure services or providers' functionality. - * - * @deprecated Use blueprint instead for code wiring. - */ -@Deprecated -public interface Consumer { - - /** - * Callback signaling initialization of the consumer session to the SAL. - * - *

- * The consumer MUST use the session for all communication with SAL or - * retrieving SAL infrastructure services. - * - *

- * This method is invoked by {@link Broker#registerConsumer(Consumer)} - * - * @param session - * Unique session between consumer and SAL. - */ - void onSessionInitiated(ConsumerSession session); - - /** - * Deprecated. - * - * @deprecated - no longer used or needed. Suggested implementation until removed: - * {@code - * public Collection getConsumerFunctionality() { - * return Collections.emptySet(); - * } - * } - */ - @Deprecated - Collection getConsumerFunctionality(); - - /** - * Deprecated. - * - * @deprecated - no longer used or needed - */ - @Deprecated - interface ConsumerFunctionality { - - } -}