Promote cds-access-api
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / PurgeLocalHistoryRequest.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.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.LocalHistoryIdentifier;
14
15 /**
16  * Request to purge a local history. This request is sent by the client once it receives a successful reply to
17  * {@link DestroyLocalHistoryRequest} and indicates it has removed all state attached to a particular local history.
18  */
19 public final class PurgeLocalHistoryRequest extends LocalHistoryRequest<PurgeLocalHistoryRequest> {
20     @Serial
21     private static final long serialVersionUID = 1L;
22
23     public PurgeLocalHistoryRequest(final LocalHistoryIdentifier target, final long sequence, final ActorRef replyTo) {
24         super(target, sequence, replyTo);
25     }
26
27     private PurgeLocalHistoryRequest(final PurgeLocalHistoryRequest request, final ABIVersion version) {
28         super(request, version);
29     }
30
31     @Override
32     protected AbstractLocalHistoryRequestProxy<PurgeLocalHistoryRequest> externalizableProxy(final ABIVersion version) {
33         return new PurgeLocalHistoryRequestProxyV1(this);
34     }
35
36     @Override
37     protected PurgeLocalHistoryRequest cloneAsVersion(final ABIVersion version) {
38         return new PurgeLocalHistoryRequest(this, version);
39     }
40 }