config-manager-facade-xml: final parameters
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / mapping / attributes / mapping / ArrayAttributeMappingStrategy.java
index 471072bba151c39220d4196c30468e5fe6ddbc91..0c593ebf3d59bf7aaad73b0a4775610b98697455 100644 (file)
@@ -20,14 +20,14 @@ public class ArrayAttributeMappingStrategy extends AbstractAttributeMappingStrat
 
     private final AttributeMappingStrategy<?, ? extends OpenType<?>> innerElementStrategy;
 
-    public ArrayAttributeMappingStrategy(ArrayType<?> arrayType,
-            AttributeMappingStrategy<?, ? extends OpenType<?>> innerElementStrategy) {
+    public ArrayAttributeMappingStrategy(final ArrayType<?> arrayType,
+            final AttributeMappingStrategy<?, ? extends OpenType<?>> innerElementStrategy) {
         super(arrayType);
         this.innerElementStrategy = innerElementStrategy;
     }
 
     @Override
-    public Optional<List<Object>> mapAttribute(Object value) {
+    public Optional<List<Object>> mapAttribute(final Object value) {
         if (value == null){
             return Optional.absent();
         }