X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-akka-raft%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fraft%2FClientRequestTrackerImpl.java;h=6ffb9228dcb4ef729965453c7df60be064b56197;hp=15de6d01a7006279a2b174ecaa2333545e2a1f0f;hb=HEAD;hpb=c222e37f2a0f0f3f6266242fbea2d3b018f4e6e3 diff --git a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/ClientRequestTrackerImpl.java b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/ClientRequestTrackerImpl.java deleted file mode 100644 index 15de6d01a7..0000000000 --- a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/ClientRequestTrackerImpl.java +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v1.0 which accompanies this distribution, - * and is available at http://www.eclipse.org/legal/epl-v10.html - */ - -package org.opendaylight.controller.cluster.raft; - -import akka.actor.ActorRef; - -public class ClientRequestTrackerImpl implements ClientRequestTracker { - - private final ActorRef clientActor; - private final String identifier; - private final long logIndex; - - public ClientRequestTrackerImpl(ActorRef clientActor, String identifier, - long logIndex) { - - this.clientActor = clientActor; - - this.identifier = identifier; - - this.logIndex = logIndex; - } - - @Override public ActorRef getClientActor() { - return clientActor; - } - - @Override public long getIndex() { - return logIndex; - } - - public String getIdentifier() { - return identifier; - } -}