X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fentityownership%2Fmessages%2FRemoveAllCandidates.java;fp=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fentityownership%2Fmessages%2FRemoveAllCandidates.java;h=0000000000000000000000000000000000000000;hb=f9ee2cce797cf12402dd55c406f3e270d7d2e20d;hp=17f80cd6ffe30d5eb2cba1a246be409fe22912a9;hpb=44d274e8a4282ef859a35369c563e4963cf2185a;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/entityownership/messages/RemoveAllCandidates.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/entityownership/messages/RemoveAllCandidates.java deleted file mode 100644 index 17f80cd6ff..0000000000 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/entityownership/messages/RemoveAllCandidates.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) 2016 2015 Brocade Communications 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.datastore.entityownership.messages; - -import java.io.Serializable; -import org.opendaylight.controller.cluster.access.concepts.MemberName; - -/** - * Message sent by an EntityOwnershipShard to its leader on startup to remove all its candidates. - * - * @author Thomas Pantelis - */ -public class RemoveAllCandidates implements Serializable { - private static final long serialVersionUID = 1L; - - private final MemberName memberName; - - public RemoveAllCandidates(MemberName memberName) { - this.memberName = memberName; - } - - public MemberName getMemberName() { - return memberName; - } - - @Override - public String toString() { - return "RemoveAllCandidates [memberName=" + memberName + "]"; - } -}