Fix checkstyle issues to enforce it
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / osgi / YangStoreContext.java
index 2f316e87804335048398c4df461a148f51b4a1c7..868a5d859196ba7c5b681271e44e19fb645a79c9 100644 (file)
@@ -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<String/* Namespace from yang file */,
-            Map<String /* Name of module entry from yang file */, ModuleMXBeanEntry>> getModuleMXBeanEntryMap();
-
+        Map<String /* Name of module entry from yang file */,
+        ModuleMXBeanEntry>> getModuleMXBeanEntryMap();
 
     Map<QName, Map<String /* identity local name */, ModuleMXBeanEntry>> 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<Module> getModules();
 
     String getModuleSource(ModuleIdentifier moduleIdentifier);
 
     EnumResolver getEnumResolver();
-
 }