2 * Copyright (c) 2015 Brocade Communications Systems, Inc. and others. All rights reserved.
4 * This program and the accompanying materials are made available under the
5 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 * and is available at http://www.eclipse.org/legal/epl-v10.html
8 package org.opendaylight.controller.cluster.datastore.messages;
11 * Message sent to a shard actor indicating one of its peers is up.
13 * @author Thomas Pantelis
16 private final String memberName;
17 private final String peerId;
19 public PeerUp(String memberName, String peerId) {
20 this.memberName = memberName;
24 public String getMemberName() {
29 public String getPeerId() {
34 public String toString() {
35 return "PeerUp [memberName=" + memberName + ", peerId=" + peerId + "]";