X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fcds-access-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Faccess%2Fcommands%2FReadTransactionRequestProxyV1.java;h=a83b6bcaacd2dd4ba7a0eddbcab29a171c9664e4;hb=HEAD;hp=8cdbeb0924f1dd5572f6938f7956c599826f266c;hpb=73a9da24a959f8acd2f4b65abef9d49523b9af6e;p=controller.git diff --git a/opendaylight/md-sal/cds-access-api/src/main/java/org/opendaylight/controller/cluster/access/commands/ReadTransactionRequestProxyV1.java b/opendaylight/md-sal/cds-access-api/src/main/java/org/opendaylight/controller/cluster/access/commands/ReadTransactionRequestProxyV1.java deleted file mode 100644 index 8cdbeb0924..0000000000 --- a/opendaylight/md-sal/cds-access-api/src/main/java/org/opendaylight/controller/cluster/access/commands/ReadTransactionRequestProxyV1.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - * Copyright (c) 2016 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.cluster.access.commands; - -/** - * Externalizable proxy for use with {@link ReadTransactionRequest}. It implements the initial (Boron) serialization - * format. - */ -@Deprecated(since = "7.0.0", forRemoval = true) -final class ReadTransactionRequestProxyV1 extends AbstractReadPathTransactionRequestProxyV1 - implements ReadTransactionRequest.SerialForm { - @java.io.Serial - private static final long serialVersionUID = 1L; - - // checkstyle flags the public modifier as redundant however it is explicitly needed for Java serialization to - // be able to create instances via reflection. - @SuppressWarnings("checkstyle:RedundantModifier") - public ReadTransactionRequestProxyV1() { - // For Externalizable - } - - ReadTransactionRequestProxyV1(final ReadTransactionRequest request) { - super(request); - } -}