A race condition occurs between ARPHandler and HostTracker if the ARP
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-util / src / main / java / org / opendaylight / controller / yang / model / util / Int64.java
index 4b05bc59e72a9f011f36809e864a9b767217451d..d51dcc7a8136912cf83188bd0d2c61becddfbb79 100644 (file)
@@ -7,13 +7,9 @@
   */
 package org.opendaylight.controller.yang.model.util;
 
-import java.net.URI;
-import java.util.Date;
-import java.util.List;
-
 import org.opendaylight.controller.yang.common.QName;
+import org.opendaylight.controller.yang.model.api.SchemaPath;
 import org.opendaylight.controller.yang.model.api.type.IntegerTypeDefinition;
-import org.opendaylight.controller.yang.model.api.type.RangeConstraint;
 
 /**
  * Implementation of Yang int64 built-in type. <br>
@@ -22,29 +18,16 @@ import org.opendaylight.controller.yang.model.api.type.RangeConstraint;
  * {@link Long}.
  *
  */
-public class Int64 extends AbstractSignedInteger {
-
+public final class Int64 extends AbstractSignedInteger {
     private static final QName name = BaseTypes.constructQName("int64");
-    private Long defaultValue = null;
+    private final Long defaultValue = null;
     private static final String description =
             "int64  represents integer values between -9223372036854775808 and 9223372036854775807, inclusively.";
+    private final IntegerTypeDefinition baseType;
 
-    public Int64(final List<String> actualPath, final URI namespace,
-            final Date revision) {
-        super(actualPath, namespace, revision, name, description, Integer.MIN_VALUE, Integer.MAX_VALUE, "");
-    }
-
-    public Int64(final List<String> actualPath, final URI namespace,
-            final Date revision, final Long defaultValue) {
-        super(actualPath, namespace, revision, name, description, Integer.MIN_VALUE, Integer.MAX_VALUE, "");
-        this.defaultValue = defaultValue;
-    }
-
-    public Int64(final List<String> actualPath, final URI namespace,
-            final Date revision, final List<RangeConstraint> rangeStatements,
-            final String units, final Long defaultValue) {
-        super(actualPath, namespace, revision, name, description, rangeStatements, units);
-        this.defaultValue = defaultValue;
+    public Int64(final SchemaPath path) {
+        super(path, name, description, Integer.MIN_VALUE, Integer.MAX_VALUE, "");
+        this.baseType = this;
     }
 
     /*
@@ -54,7 +37,7 @@ public class Int64 extends AbstractSignedInteger {
      */
     @Override
     public IntegerTypeDefinition getBaseType() {
-        return this;
+        return baseType;
     }
 
     /*