Sonar suggested fix - lock creation of singleton

Change-Id: I2139dff76207efcb6b98c6651037f6abdb17bd6b
diff --git a/drivers/odtn-driver/src/main/java/org/onosproject/drivers/odtn/impl/OpenConfigConnectionCache.java b/drivers/odtn-driver/src/main/java/org/onosproject/drivers/odtn/impl/OpenConfigConnectionCache.java
index 5d2c7e7..95adebc 100644
--- a/drivers/odtn-driver/src/main/java/org/onosproject/drivers/odtn/impl/OpenConfigConnectionCache.java
+++ b/drivers/odtn-driver/src/main/java/org/onosproject/drivers/odtn/impl/OpenConfigConnectionCache.java
@@ -41,8 +41,9 @@
     private Map<DeviceId, Set<FlowRule>> smp = Collections.synchronizedMap(mp);
 
     private static OpenConfigConnectionCache cache = null;
+    private static final Object CACHE_LOCK = new Object();
 
-    //banning public contraction
+    //banning public construction
     private OpenConfigConnectionCache() {
     }
 
@@ -53,8 +54,10 @@
      * @return single instance of cache
      */
     public static OpenConfigConnectionCache init() {
-        if (cache == null) {
-            cache = new OpenConfigConnectionCache();
+        synchronized (CACHE_LOCK) {
+            if (cache == null) {
+                cache = new OpenConfigConnectionCache();
+            }
         }
         return cache;
     }