2 * Copyright (c) 2017 Cisco 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.remote.rpc.registry.gossip;
10 import akka.actor.Address;
11 import com.google.common.collect.ImmutableMap;
12 import java.io.Serializable;
15 final class GossipStatus implements Serializable {
16 private static final long serialVersionUID = 1L;
18 private final Map<Address, Long> versions;
19 private final Address from;
21 GossipStatus(final Address from, final Map<Address, Long> versions) {
22 this.versions = ImmutableMap.copyOf(versions);
30 Map<Address, Long> versions() {