X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-dom-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fcore%2Fapi%2FConsumer.java;h=a5ab8ac911b20fc703b96185af66e9bb60c170d7;hp=a693cd6c49b475bc5f046cbb48c465f37858729f;hb=2b1816000faf22f6bbc87fcebe21d94f4b46abd9;hpb=2d82d2f4f36d22d24883a0f855e39289603377f8 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 index a693cd6c49..a5ab8ac911 100644 --- 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 @@ -38,21 +38,22 @@ public interface Consumer { public void onSessionInitiated(ConsumerSession session); /** - * Get a set of implementations of consumer functionality to be registered - * into system during the consumer registration to the SAL. - * - * This method is invoked by {@link Broker#registerConsumer(Consumer)}. - * - * @return Set of consumer functionality. + * @deprecated - no longer used or needed + * * + * Suggested implementation until removed: + * @code { + * public Collection getConsumerFunctionality() { + * return Collections.emptySet(); + * } + * } */ + @Deprecated public Collection getConsumerFunctionality(); /** - * The marker interface for the interfaces describing the consumer - * functionality contracts. - * - * + * @deprecated - no longer used or needed */ + @Deprecated public interface ConsumerFunctionality { }