X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fconfig%2Fconfig-persister-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconfig%2Fpersist%2Fapi%2FConfigSnapshotHolder.java;h=c00b26d9ced898dc0dd4f4239d68b9d933332ad3;hb=e22159a0e53bf93a94908e2c3988ceeba9ed8183;hp=654326a898cc735c9d0cf69529cbfc992d1069b3;hpb=49bfc449558d0306f0b6550bc5bdf41e5cafca44;p=controller.git diff --git a/opendaylight/config/config-persister-api/src/main/java/org/opendaylight/controller/config/persist/api/ConfigSnapshotHolder.java b/opendaylight/config/config-persister-api/src/main/java/org/opendaylight/controller/config/persist/api/ConfigSnapshotHolder.java index 654326a898..c00b26d9ce 100644 --- a/opendaylight/config/config-persister-api/src/main/java/org/opendaylight/controller/config/persist/api/ConfigSnapshotHolder.java +++ b/opendaylight/config/config-persister-api/src/main/java/org/opendaylight/controller/config/persist/api/ConfigSnapshotHolder.java @@ -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 getCapabilities(); - } + /** + * Get only required capabilities referenced by the snapshot. + */ + SortedSet getCapabilities(); + +}