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%2Fmd%2Fsal%2Fdom%2Fapi%2FDOMDataTreeProducerFactory.java;h=f94b6ce52d5ee9571ded1bf3adf62db442ae92df;hp=89ac8d1e6c0689a8deac0aba4aac156dc3c6a6be;hb=89b1c5b7d66614d1b98ec14abc3326fb878eb056;hpb=bead4f9288b0c758ac736ee8945ca01313b177da diff --git a/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/md/sal/dom/api/DOMDataTreeProducerFactory.java b/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/md/sal/dom/api/DOMDataTreeProducerFactory.java index 89ac8d1e6c..f94b6ce52d 100644 --- a/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/md/sal/dom/api/DOMDataTreeProducerFactory.java +++ b/opendaylight/md-sal/sal-dom-api/src/main/java/org/opendaylight/controller/md/sal/dom/api/DOMDataTreeProducerFactory.java @@ -13,14 +13,17 @@ import javax.annotation.Nonnull; /** * Base source of {@link DOMDataTreeProducer}s. This interface is usually not used directly, * but rather through one of its sub-interfaces. + * + * @deprecated Use {@link org.opendaylight.mdsal.dom.api.DOMDataTreeProducerFactory} instead. */ +@Deprecated public interface DOMDataTreeProducerFactory { /** * Create a producer, which is able to access to a set of trees. * * @param subtrees The collection of subtrees the resulting producer should have access to. * @return A {@link DOMDataTreeProducer} instance. - * @throws {@link IllegalArgumentException} if subtrees is empty. + * @throws IllegalArgumentException if subtrees is empty. */ @Nonnull DOMDataTreeProducer createProducer(@Nonnull Collection subtrees); }