Bug 2187: Timeout the Persist state
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / messages / FollowerCatchUpTimeout.java
diff --git a/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/FollowerCatchUpTimeout.java b/opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/messages/FollowerCatchUpTimeout.java
deleted file mode 100644 (file)
index 365e3a0..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Copyright (c) 2015 Dell 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.messages;
-
-import com.google.common.base.Preconditions;
-
-/**
- * Local message sent to self when catch-up of a new follower doesn't complete in a timely manner
- */
-
-public class FollowerCatchUpTimeout {
-    private final String newServerId;
-
-    public FollowerCatchUpTimeout(String serverId){
-       this.newServerId = Preconditions.checkNotNull(serverId, "serverId should not be null");
-    }
-    public String getNewServerId() {
-        return newServerId;
-    }
-
-}