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 / CreateLocalHistoryRequestProxyV1.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 org.opendaylight.controller.cluster.access.concepts.LocalHistoryIdentifier;
12
13 /**
14  * Externalizable proxy for use with {@link CreateLocalHistoryRequest}. It implements the initial (Boron) serialization
15  * format.
16  *
17  * @author Robert Varga
18  */
19 final class CreateLocalHistoryRequestProxyV1 extends AbstractLocalHistoryRequestProxy<CreateLocalHistoryRequest> {
20     private static final long serialVersionUID = 1L;
21
22     // checkstyle flags the public modifier as redundant however it is explicitly needed for Java serialization to
23     // be able to create instances via reflection.
24     @SuppressWarnings("checkstyle:RedundantModifier")
25     public CreateLocalHistoryRequestProxyV1() {
26         // For Externalizable
27     }
28
29     CreateLocalHistoryRequestProxyV1(final CreateLocalHistoryRequest request) {
30         super(request);
31     }
32
33     @Override
34     protected CreateLocalHistoryRequest createRequest(final LocalHistoryIdentifier target, final long sequence,
35             final ActorRef replyTo) {
36         return new CreateLocalHistoryRequest(target, sequence, replyTo);
37     }
38 }