BUG-5280: separate request sequence and transmit sequence
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / concepts / AbstractSuccessProxy.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.cluster.access.concepts;
9
10 import com.google.common.annotations.Beta;
11 import java.io.Externalizable;
12 import javax.annotation.Nonnull;
13 import org.opendaylight.yangtools.concepts.WritableIdentifier;
14
15 /**
16  * Abstract Externalizable proxy for use with {@link RequestSuccess} subclasses.
17  *
18  * @author Robert Varga
19  *
20  * @param <T> Target identifier type
21  */
22 @Beta
23 public abstract class AbstractSuccessProxy<T extends WritableIdentifier, C extends RequestSuccess<T, C>>
24         extends AbstractResponseProxy<T, C> implements Externalizable {
25     private static final long serialVersionUID = 1L;
26
27     protected AbstractSuccessProxy() {
28         // For Externalizable
29     }
30
31     protected AbstractSuccessProxy(final @Nonnull C success) {
32         super(success);
33     }
34
35     @Override
36     final C createResponse(final T target, final long sequence) {
37         return createSuccess(target, sequence);
38     }
39
40     protected abstract @Nonnull C createSuccess(@Nonnull T target, long sequence);
41 }