X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fconfig%2Fconfig-manager-facade-xml%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconfig%2Ffacade%2Fxml%2Fosgi%2FYangStoreContext.java;fp=opendaylight%2Fconfig%2Fconfig-manager-facade-xml%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconfig%2Ffacade%2Fxml%2Fosgi%2FYangStoreContext.java;h=868a5d859196ba7c5b681271e44e19fb645a79c9;hb=d266f4384d4850af9049d7cddd2bbac8f75ba61e;hp=2f316e87804335048398c4df461a148f51b4a1c7;hpb=b197d75e803beac663033287d769dce62c108490;p=controller.git diff --git a/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/osgi/YangStoreContext.java b/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/osgi/YangStoreContext.java index 2f316e8780..868a5d8591 100644 --- a/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/osgi/YangStoreContext.java +++ b/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/osgi/YangStoreContext.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved. + * Copyright (c) 2015, 2017 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, @@ -17,24 +17,28 @@ import org.opendaylight.yangtools.yang.model.api.ModuleIdentifier; public interface YangStoreContext { /** - * @deprecated Use {@link #getQNamesToIdentitiesToModuleMXBeanEntries()} instead. This method return only one - * module representation even if multiple revisions are available. + * Yang store context. + * + * @deprecated Use {@link #getQNamesToIdentitiesToModuleMXBeanEntries()} + * instead. This method return only one module representation even + * if multiple revisions are available. */ @Deprecated Map> getModuleMXBeanEntryMap(); - + Map> getModuleMXBeanEntryMap(); Map> getQNamesToIdentitiesToModuleMXBeanEntries(); /** * Get all modules discovered when this snapshot was created. - * @return all modules discovered. If one module exists with two different revisions, return both. + * + * @return all modules discovered. If one module exists with two different + * revisions, return both. */ Set getModules(); String getModuleSource(ModuleIdentifier moduleIdentifier); EnumResolver getEnumResolver(); - }