X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fmessages%2FDatastoreSnapshot.java;fp=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fmessages%2FDatastoreSnapshot.java;h=0000000000000000000000000000000000000000;hb=90735c91ce3390a731afc446b4e7314c544ab9d6;hp=9c223b4f5a5763e3d155a03981fe0286ef39682e;hpb=fc9b4841afb419e386ecd330050503324095dd36;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/DatastoreSnapshot.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/DatastoreSnapshot.java deleted file mode 100644 index 9c223b4f5a..0000000000 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/messages/DatastoreSnapshot.java +++ /dev/null @@ -1,84 +0,0 @@ -/* - * Copyright (c) 2015 Brocade Communications 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.cluster.datastore.messages; - -import com.google.common.base.Preconditions; -import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; -import java.io.Serializable; -import java.util.List; -import javax.annotation.Nonnull; -import javax.annotation.Nullable; - -/** - * Stores a snapshot of the internal state of a data store. - * - * @author Thomas Pantelis - * - * @deprecated Use {@link org.opendaylight.controller.cluster.datastore.persisted.DatastoreSnapshot} instead. - */ -@Deprecated -public class DatastoreSnapshot implements Serializable { - private static final long serialVersionUID = 1L; - - private final String type; - private final byte[] shardManagerSnapshot; - private final List shardSnapshots; - - @SuppressFBWarnings(value = "EI_EXPOSE_REP2", justification = "Stores a reference to an externally mutable byte[] " - + "object but this is OK since this class is merely a DTO and does not process byte[] internally. " - + "Also it would be inefficient to create a return copy as the byte[] could be large.") - public DatastoreSnapshot(@Nonnull String type, @Nullable byte[] shardManagerSnapshot, - @Nonnull List shardSnapshots) { - this.type = Preconditions.checkNotNull(type); - this.shardManagerSnapshot = shardManagerSnapshot; - this.shardSnapshots = Preconditions.checkNotNull(shardSnapshots); - } - - @Nonnull - public String getType() { - return type; - } - - @SuppressFBWarnings(value = "EI_EXPOSE_REP", justification = "Exposes a mutable object stored in a field but " - + "this is OK since this class is merely a DTO and does not process byte[] internally. " - + "Also it would be inefficient to create a return copy as the byte[] could be large.") - @Nullable - public byte[] getShardManagerSnapshot() { - return shardManagerSnapshot; - } - - @Nonnull - public List getShardSnapshots() { - return shardSnapshots; - } - - public static class ShardSnapshot implements Serializable { - private static final long serialVersionUID = 1L; - - private final String name; - private final byte[] snapshot; - - public ShardSnapshot(@Nonnull String name, @Nonnull byte[] snapshot) { - this.name = Preconditions.checkNotNull(name); - this.snapshot = Preconditions.checkNotNull(snapshot); - } - - @Nonnull - public String getName() { - return name; - } - - @SuppressFBWarnings(value = "EI_EXPOSE_REP", justification = "Exposes a mutable object stored in a field but " - + "this is OK since this class is merely a DTO and does not process byte[] internally. " - + "Also it would be inefficient to create a return copy as the byte[] could be large.") - @Nonnull - public byte[] getSnapshot() { - return snapshot; - } - } -}