Promote cds-access-api
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / LocalHistoryRequest.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 com.google.common.base.Preconditions;
12 import java.io.Serial;
13 import org.opendaylight.controller.cluster.access.ABIVersion;
14 import org.opendaylight.controller.cluster.access.concepts.LocalHistoryIdentifier;
15 import org.opendaylight.controller.cluster.access.concepts.Request;
16 import org.opendaylight.controller.cluster.access.concepts.RequestException;
17
18 /**
19  * Abstract base class for {@link Request}s involving specific local history. This class is visible outside of this
20  * package solely for the ability to perform a unified instanceof check.
21  *
22  * @param <T> Message type
23  */
24 public abstract class LocalHistoryRequest<T extends LocalHistoryRequest<T>> extends Request<LocalHistoryIdentifier, T> {
25     @Serial
26     private static final long serialVersionUID = 1L;
27
28     LocalHistoryRequest(final LocalHistoryIdentifier target, final long sequence, final ActorRef replyTo) {
29         super(target, sequence, replyTo);
30         Preconditions.checkArgument(target.getHistoryId() != 0, "History identifier must be non-zero");
31     }
32
33     LocalHistoryRequest(final T request, final ABIVersion version) {
34         super(request, version);
35     }
36
37     @Override
38     public final LocalHistoryFailure toRequestFailure(final RequestException cause) {
39         return new LocalHistoryFailure(getTarget(), getSequence(), cause);
40     }
41
42     @Override
43     protected abstract AbstractLocalHistoryRequestProxy<T> externalizableProxy(ABIVersion version);
44 }