fb12edeacdd8fdadb744c9bc79b8356005ae97b0
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / TransactionRequest.java
1 /*
2  * Copyright (c) 2016, 2017 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.commands;
9
10 import akka.actor.ActorRef;
11 import java.io.Serial;
12 import org.opendaylight.controller.cluster.access.ABIVersion;
13 import org.opendaylight.controller.cluster.access.concepts.Request;
14 import org.opendaylight.controller.cluster.access.concepts.RequestException;
15 import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier;
16
17 /**
18  * Abstract base class for {@link Request}s involving specific transaction. This class is visible outside of this
19  * package solely for the ability to perform a unified instanceof check.
20  *
21  * @param <T> Message type
22  */
23 public abstract class TransactionRequest<T extends TransactionRequest<T>> extends Request<TransactionIdentifier, T> {
24     @Serial
25     private static final long serialVersionUID = 1L;
26
27     TransactionRequest(final TransactionIdentifier identifier, final long sequence, final ActorRef replyTo) {
28         super(identifier, sequence, replyTo);
29     }
30
31     TransactionRequest(final T request, final ABIVersion version) {
32         super(request, version);
33     }
34
35     @Override
36     public final TransactionFailure toRequestFailure(final RequestException cause) {
37         return new TransactionFailure(getTarget(), getSequence(), cause);
38     }
39
40     @Override
41     protected abstract AbstractTransactionRequestProxy<T> externalizableProxy(ABIVersion version);
42 }