X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-eos%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fentityownership%2Fmessages%2FUnregisterCandidateLocal.java;fp=opendaylight%2Fmd-sal%2Fsal-distributed-eos%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fentityownership%2Fmessages%2FUnregisterCandidateLocal.java;h=0000000000000000000000000000000000000000;hp=7c4cabb6657ee16c7c34e6ca2b997c595d53aff0;hb=118c8b39d7bece6c3dc4adb8e27401a325b69692;hpb=d8deaa4381251e0900a6ba50d1f16bab47ab8491 diff --git a/opendaylight/md-sal/sal-distributed-eos/src/main/java/org/opendaylight/controller/cluster/entityownership/messages/UnregisterCandidateLocal.java b/opendaylight/md-sal/sal-distributed-eos/src/main/java/org/opendaylight/controller/cluster/entityownership/messages/UnregisterCandidateLocal.java deleted file mode 100644 index 7c4cabb665..0000000000 --- a/opendaylight/md-sal/sal-distributed-eos/src/main/java/org/opendaylight/controller/cluster/entityownership/messages/UnregisterCandidateLocal.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Copyright (c) 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.entityownership.messages; - -import org.opendaylight.mdsal.eos.dom.api.DOMEntity; - -/** - * Message sent to the local EntityOwnershipShard to unregister a candidate. - * - * @author Thomas Pantelis - */ -public class UnregisterCandidateLocal { - private final DOMEntity entity; - - public UnregisterCandidateLocal(final DOMEntity entity) { - this.entity = entity; - } - - public DOMEntity getEntity() { - return entity; - } - - @Override - public String toString() { - return "UnregisterCandidateLocal [entity=" + entity + "]"; - } -}