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%2Fconcepts%2FAbstractSuccessProxy.java;fp=opendaylight%2Fmd-sal%2Fcds-access-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Faccess%2Fconcepts%2FAbstractSuccessProxy.java;h=0000000000000000000000000000000000000000;hb=f7833ed068d6fc7e5a38ede8c4edd6f371a5acfd;hp=598fa83e93cf845ac2f4d9771c40902cf067979a;hpb=cd05b148126134dc5ed4f037f203ff260c1afa1a;p=controller.git diff --git a/opendaylight/md-sal/cds-access-api/src/main/java/org/opendaylight/controller/cluster/access/concepts/AbstractSuccessProxy.java b/opendaylight/md-sal/cds-access-api/src/main/java/org/opendaylight/controller/cluster/access/concepts/AbstractSuccessProxy.java deleted file mode 100644 index 598fa83e93..0000000000 --- a/opendaylight/md-sal/cds-access-api/src/main/java/org/opendaylight/controller/cluster/access/concepts/AbstractSuccessProxy.java +++ /dev/null @@ -1,31 +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.concepts; - -import org.eclipse.jdt.annotation.NonNull; -import org.opendaylight.yangtools.concepts.WritableIdentifier; - -/** - * Abstract Externalizable proxy for use with {@link RequestSuccess} subclasses. - * - * @param Target identifier type - */ -@Deprecated(since = "7.0.0", forRemoval = true) -public abstract class AbstractSuccessProxy> - extends AbstractResponseProxy { - @java.io.Serial - private static final long serialVersionUID = 1L; - - protected AbstractSuccessProxy() { - // For Externalizable - } - - protected AbstractSuccessProxy(final @NonNull C success) { - super(success); - } -}