X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-eos%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fentityownership%2Fmessages%2FCandidateAdded.java;fp=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fentityownership%2Fmessages%2FCandidateAdded.java;h=2fb6bda68caaacbd87f446ce18698c4b35924d3e;hb=f9ee2cce797cf12402dd55c406f3e270d7d2e20d;hp=6340880daa6a64fd16f64fa69935f14c16c3f48a;hpb=44d274e8a4282ef859a35369c563e4963cf2185a;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/entityownership/messages/CandidateAdded.java b/opendaylight/md-sal/sal-distributed-eos/src/main/java/org/opendaylight/controller/cluster/entityownership/messages/CandidateAdded.java similarity index 85% rename from opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/entityownership/messages/CandidateAdded.java rename to opendaylight/md-sal/sal-distributed-eos/src/main/java/org/opendaylight/controller/cluster/entityownership/messages/CandidateAdded.java index 6340880daa..2fb6bda68c 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/entityownership/messages/CandidateAdded.java +++ b/opendaylight/md-sal/sal-distributed-eos/src/main/java/org/opendaylight/controller/cluster/entityownership/messages/CandidateAdded.java @@ -5,8 +5,7 @@ * 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; +package org.opendaylight.controller.cluster.entityownership.messages; import java.util.Collection; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; @@ -22,7 +21,8 @@ public class CandidateAdded { private final Collection allCandidates; private final String newCandidate; - public CandidateAdded(YangInstanceIdentifier entityPath, String newCandidate, Collection allCandidates) { + public CandidateAdded(final YangInstanceIdentifier entityPath, final String newCandidate, + final Collection allCandidates) { this.entityPath = entityPath; this.newCandidate = newCandidate; this.allCandidates = allCandidates;