Bug 6859 - Binding generator v1 refactoring
[controller.git] / opendaylight / config / yang-jmx-generator / src / main / java / org / opendaylight / controller / config / yangjmxgenerator / attribute / ListDependenciesAttribute.java
index 48d06a381c1b40f25e52e90d58d59536b6ec9626..da5392919c53ba78725969c09d52be6d6e3d5a8f 100644 (file)
@@ -13,13 +13,13 @@ import javax.management.openmbean.ArrayType;
 import javax.management.openmbean.OpenType;
 import javax.management.openmbean.SimpleType;
 import org.opendaylight.controller.config.yangjmxgenerator.ServiceInterfaceEntry;
 import javax.management.openmbean.OpenType;
 import javax.management.openmbean.SimpleType;
 import org.opendaylight.controller.config.yangjmxgenerator.ServiceInterfaceEntry;
-import org.opendaylight.yangtools.binding.generator.util.Types;
-import org.opendaylight.yangtools.sal.binding.model.api.Type;
+import org.opendaylight.mdsal.binding.generator.util.Types;
+import org.opendaylight.mdsal.binding.model.api.Type;
 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
 
 public class ListDependenciesAttribute extends AbstractDependencyAttribute {
 
 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
 
 public class ListDependenciesAttribute extends AbstractDependencyAttribute {
 
-    public ListDependenciesAttribute(DataSchemaNode attrNode, ServiceInterfaceEntry sie, boolean mandatory, String nullableDescription) {
+    public ListDependenciesAttribute(final DataSchemaNode attrNode, final ServiceInterfaceEntry sie, final boolean mandatory, final String nullableDescription) {
         super(attrNode, sie, mandatory, nullableDescription);
     }
 
         super(attrNode, sie, mandatory, nullableDescription);
     }
 
@@ -30,7 +30,7 @@ public class ListDependenciesAttribute extends AbstractDependencyAttribute {
 
     @Override
     public ArrayType<?> getOpenType() {
 
     @Override
     public ArrayType<?> getOpenType() {
-        OpenType<?> innerOpenType = SimpleType.OBJECTNAME;
+        final OpenType<?> innerOpenType = SimpleType.OBJECTNAME;
         return ListAttribute.constructArrayType(innerOpenType);
     }
 
         return ListAttribute.constructArrayType(innerOpenType);
     }