Remove yang-test
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / Datastore.java
index c908df854794a408df48f5d6fac6f9d3bc86c093..93df25ffc67e0f85c6c9a85f2fd2cf92d3a4030f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
+ * Copyright (c) 2013, 2017 Cisco Systems, Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
@@ -14,20 +14,15 @@ public enum Datastore {
 
     running, candidate;
 
-    /**
-     * @param source
-     * @param transactionProvider
-     * @return
-     */
-    public static DatastoreQueryStrategy getInstanceQueryStrategy(Datastore source,
-            TransactionProvider transactionProvider) {
+    public static DatastoreQueryStrategy getInstanceQueryStrategy(final Datastore source,
+            final TransactionProvider transactionProvider) {
         switch (source) {
-        case running:
-            return new RunningDatastoreQueryStrategy(transactionProvider);
-        case candidate:
-            return new CandidateDatastoreQueryStrategy(transactionProvider);
-        default:
-            throw new UnsupportedOperationException("Unimplemented datastore query strategy for " + source);
+            case running:
+                return new RunningDatastoreQueryStrategy(transactionProvider);
+            case candidate:
+                return new CandidateDatastoreQueryStrategy(transactionProvider);
+            default:
+                throw new UnsupportedOperationException("Unimplemented datastore query strategy for " + source);
         }
     }
 }