Implement finding a primary based on the shard name and do basic wiring of Distribute...
[controller.git] / opendaylight / config / config-persister-api / src / main / java / org / opendaylight / controller / config / persist / api / ConfigSnapshotHolder.java
index 654326a898cc735c9d0cf69529cbfc992d1069b3..c00b26d9ced898dc0dd4f4239d68b9d933332ad3 100644 (file)
@@ -1,17 +1,25 @@
+/*
+ * Copyright (c) 2014 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,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
 package org.opendaylight.controller.config.persist.api;
 
 import java.util.SortedSet;
 
 public interface ConfigSnapshotHolder {
 
-        /**
-         * Get part of get-config document that contains just
-         */
-        String getConfigSnapshot();
+    /**
+     * Get part of get-config document that contains just
+     */
+    String getConfigSnapshot();
 
 
-        /**
-         * Get only required capabilities referenced by the snapshot.
-         */
-        SortedSet<String> getCapabilities();
-    }
+    /**
+     * Get only required capabilities referenced by the snapshot.
+     */
+    SortedSet<String> getCapabilities();
+
+}