minor: Some very minor first clean up in IdManager
[genius.git] / idmanager / idmanager-impl / src / main / java / org / opendaylight / genius / idmanager / jobs / UpdateIdEntryJob.java
index 7c065b0e131bb7f99f54b61f348278b2194e5683..bc8aa48e247b156e0079c7911fda481b06897368 100644 (file)
@@ -22,11 +22,11 @@ import com.google.common.util.concurrent.ListenableFuture;
 
 public class UpdateIdEntryJob implements Callable<List<ListenableFuture<Void>>> {
 
-    String parentPoolName;
-    String localPoolName;
-    String idKey;
-    List<Long> newIdValues;
-    DataBroker broker;
+    private final String parentPoolName;
+    private final String localPoolName;
+    private final String idKey;
+    private final List<Long> newIdValues;
+    private final DataBroker broker;
 
     public UpdateIdEntryJob(String parentPoolName, String localPoolName,
             String idKey, List<Long> newIdValues, DataBroker broker) {
@@ -53,4 +53,4 @@ public class UpdateIdEntryJob implements Callable<List<ListenableFuture<Void>>>
         futures.add(tx.submit());
         return futures;
     }
-}
\ No newline at end of file
+}