Make field defined as final if possible

Change-Id: I74acbf5cde94b9c4287d9e907e8511981b436543
diff --git a/core/api/src/main/java/org/onosproject/net/intent/IntentData.java b/core/api/src/main/java/org/onosproject/net/intent/IntentData.java
index 743e349..5ae9214 100644
--- a/core/api/src/main/java/org/onosproject/net/intent/IntentData.java
+++ b/core/api/src/main/java/org/onosproject/net/intent/IntentData.java
@@ -44,7 +44,7 @@
 
     private final IntentState request; //TODO perhaps we want a full fledged object for requests
     private IntentState state;
-    private Timestamp version;
+    private final Timestamp version;
     private NodeId origin;
     private int errorCount;
 
@@ -121,6 +121,7 @@
     protected IntentData() {
         intent = null;
         request = null;
+        version = null;
     }
 
     /**