config-persister-impl: final parameters
[controller.git] / opendaylight / config / config-persister-impl / src / main / java / org / opendaylight / controller / config / persist / impl / osgi / PropertiesProviderBaseImpl.java
index 5ad31e878095f113d80bcbc081447a3040a0a3d7..5a5f7e77b590f1f6bbee6a07375efb8af9d4424f 100644 (file)
@@ -17,17 +17,17 @@ public class PropertiesProviderBaseImpl implements PropertiesProvider {
     private static final Logger LOG = LoggerFactory.getLogger(PropertiesProviderBaseImpl.class);
     private final BundleContext bundleContext;
 
-    public PropertiesProviderBaseImpl(BundleContext bundleContext) {
+    public PropertiesProviderBaseImpl(final BundleContext bundleContext) {
         this.bundleContext = bundleContext;
     }
 
     @Override
-    public String getProperty(String key) {
+    public String getProperty(final String key) {
         String fullKey = getFullKeyForReporting(key);
         return getPropertyWithoutPrefix(fullKey);
     }
 
-    public String getPropertyWithoutPrefix(String fullKey){
+    public String getPropertyWithoutPrefix(final String fullKey){
         LOG.trace("Full key {}", fullKey);
         return bundleContext.getProperty(fullKey);
     }
@@ -37,7 +37,7 @@ public class PropertiesProviderBaseImpl implements PropertiesProvider {
     }
 
     @Override
-    public String getFullKeyForReporting(String key) {
+    public String getFullKeyForReporting(final String key) {
         return getPrefix() + "." + key;
     }
 }