2 * Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved.
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
8 package org.opendaylight.controller.cluster.access.commands;
10 import akka.actor.ActorRef;
11 import org.opendaylight.controller.cluster.access.concepts.LocalHistoryIdentifier;
14 * Externalizable proxy for use with {@link PurgeLocalHistoryRequest}. It implements the initial (Boron) serialization
17 * @author Robert Varga
19 final class PurgeLocalHistoryRequestProxyV1 extends AbstractLocalHistoryRequestProxy<PurgeLocalHistoryRequest> {
20 private static final long serialVersionUID = 1L;
22 public PurgeLocalHistoryRequestProxyV1() {
26 PurgeLocalHistoryRequestProxyV1(final PurgeLocalHistoryRequest request) {
31 protected PurgeLocalHistoryRequest createRequest(final LocalHistoryIdentifier target, final long sequence,
32 final ActorRef replyTo) {
33 return new PurgeLocalHistoryRequest(target, sequence, replyTo);