/* * Copyright (c) 2015 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.datastore.entityownership.messages; import java.util.Collection; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; /** * Message sent when a new candidate is added for an entity. * * @author Moiz Raja * @author Thomas Pantelis */ public class CandidateAdded { private final YangInstanceIdentifier entityPath; private final Collection allCandidates; private final String newCandidate; public CandidateAdded(YangInstanceIdentifier entityPath, String newCandidate, Collection allCandidates) { this.entityPath = entityPath; this.newCandidate = newCandidate; this.allCandidates = allCandidates; } public YangInstanceIdentifier getEntityPath() { return entityPath; } public Collection getAllCandidates() { return allCandidates; } public String getNewCandidate() { return newCandidate; } @Override public String toString() { return "CandidateAdded [entityPath=" + entityPath + ", newCandidate=" + newCandidate + ", allCandidates=" + allCandidates + "]"; } }