X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=opendaylight%2Fmd-sal%2Fcds-access-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Faccess%2Fcommands%2FExistsTransactionRequestProxyV1.java;fp=opendaylight%2Fmd-sal%2Fcds-access-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Faccess%2Fcommands%2FExistsTransactionRequestProxyV1.java;h=0000000000000000000000000000000000000000;hb=f7833ed068d6fc7e5a38ede8c4edd6f371a5acfd;hp=09c1e0a1ebc05063adb2eca9c38415e31913617a;hpb=cd05b148126134dc5ed4f037f203ff260c1afa1a;p=controller.git diff --git a/opendaylight/md-sal/cds-access-api/src/main/java/org/opendaylight/controller/cluster/access/commands/ExistsTransactionRequestProxyV1.java b/opendaylight/md-sal/cds-access-api/src/main/java/org/opendaylight/controller/cluster/access/commands/ExistsTransactionRequestProxyV1.java deleted file mode 100644 index 09c1e0a1eb..0000000000 --- a/opendaylight/md-sal/cds-access-api/src/main/java/org/opendaylight/controller/cluster/access/commands/ExistsTransactionRequestProxyV1.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 ExistsTransactionRequest}. It implements the initial (Boron) serialization - * format. - */ -@Deprecated(since = "7.0.0", forRemoval = true) -final class ExistsTransactionRequestProxyV1 extends AbstractReadPathTransactionRequestProxyV1 - implements ExistsTransactionRequest.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 ExistsTransactionRequestProxyV1() { - // For Externalizable - } - - ExistsTransactionRequestProxyV1(final ExistsTransactionRequest request) { - super(request); - } -}