/* * 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 static java.util.Objects.requireNonNull; import org.eclipse.jdt.annotation.NonNullByDefault; import org.opendaylight.mdsal.eos.dom.api.DOMEntityOwnershipListener; /** * Message sent to the local EntityOwnershipShard to register an EntityOwnershipListener. * * @author Thomas Pantelis */ @NonNullByDefault public class RegisterListenerLocal { private final DOMEntityOwnershipListener listener; private final String entityType; public RegisterListenerLocal(final DOMEntityOwnershipListener listener, final String entityType) { this.listener = requireNonNull(listener, "listener cannot be null"); this.entityType = requireNonNull(entityType, "entityType cannot be null"); } public DOMEntityOwnershipListener getListener() { return listener; } public String getEntityType() { return entityType; } @Override public String toString() { return "RegisterListenerLocal [entityType=" + entityType + ", listener=" + listener + "]"; } }