Remove yang-test
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / mapping / attributes / mapping / EnumAttributeMappingStrategy.java
index bafb33b88d750e397b7988fcf6a4ed09df223bc2..c6b20c826f3560617e99c3e11f090ec204d6eb61 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,
@@ -16,19 +16,18 @@ public class EnumAttributeMappingStrategy extends AbstractAttributeMappingStrate
 
     private final EnumResolver enumResolver;
 
-    public EnumAttributeMappingStrategy(CompositeType openType, final EnumResolver enumResolver) {
+    public EnumAttributeMappingStrategy(final CompositeType openType, final EnumResolver enumResolver) {
         super(openType);
         this.enumResolver = enumResolver;
     }
 
     @Override
-    public Optional<String> mapAttribute(Object value) {
-        if (value == null){
+    public Optional<String> mapAttribute(final Object value) {
+        if (value == null) {
             return Optional.absent();
         }
 
         String expectedClass = getOpenType().getTypeName();
         return Optional.of(enumResolver.toYang(expectedClass, value.toString()));
     }
-
 }