Fix CS warnings in cds-access-api and enable enforcement
[controller.git] / opendaylight / md-sal / cds-access-api / src / main / java / org / opendaylight / controller / cluster / access / commands / DestroyLocalHistoryRequest.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 com.google.common.annotations.Beta;
12 import org.opendaylight.controller.cluster.access.ABIVersion;
13 import org.opendaylight.controller.cluster.access.concepts.LocalHistoryIdentifier;
14
15 /**
16  * Request to destroy a local history.
17  *
18  * @author Robert Varga
19  */
20 @Beta
21 public final class DestroyLocalHistoryRequest extends LocalHistoryRequest<DestroyLocalHistoryRequest> {
22     private static final long serialVersionUID = 1L;
23
24     public DestroyLocalHistoryRequest(final LocalHistoryIdentifier target, final long sequence,
25             final ActorRef replyTo) {
26         super(target, sequence, replyTo);
27     }
28
29     private DestroyLocalHistoryRequest(final DestroyLocalHistoryRequest request, final ABIVersion version) {
30         super(request, version);
31     }
32
33     @Override
34     protected AbstractLocalHistoryRequestProxy<DestroyLocalHistoryRequest> externalizableProxy(
35             final ABIVersion version) {
36         return new DestroyLocalHistoryRequestProxyV1(this);
37     }
38
39     @Override
40     protected DestroyLocalHistoryRequest cloneAsVersion(final ABIVersion version) {
41         return new DestroyLocalHistoryRequest(this, version);
42     }
43 }