Promote cds-access-api
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / concepts / Response.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 java.io.Serial;
11 import org.eclipse.jdt.annotation.NonNull;
12 import org.opendaylight.controller.cluster.access.ABIVersion;
13 import org.opendaylight.yangtools.concepts.WritableIdentifier;
14
15 /**
16  * Abstract counterpart to a {@link Request}. This class should not be instantiated directly, but rather through
17  * {@link RequestFailure} and {@link RequestSuccess}, which provide appropriate specialization. It is visible purely for
18  * the purpose of allowing to check if an object is either of those specializations with a single instanceof check.
19  *
20  * @param <T> Target identifier type
21  * @param <C> Message type
22  */
23 public abstract class Response<T extends WritableIdentifier, C extends Response<T, C>> extends Message<T, C> {
24     @Serial
25     private static final long serialVersionUID = 1L;
26
27     Response(final @NonNull T target, final long sequence) {
28         super(target, sequence);
29     }
30
31     Response(final @NonNull C response, final @NonNull ABIVersion version) {
32         super(response, version);
33     }
34
35     @Override
36     abstract AbstractResponseProxy<T, C> externalizableProxy(ABIVersion version);
37 }