org.piax.gtrans.ov.ring.ResponseMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of piax-compat Show documentation
Show all versions of piax-compat Show documentation
A backward compatibility package for PIAX
The newest version!
/*
* ResponseMessage.java - ResponseMessage implementation of ring overlay.
*
* Copyright (c) 2015 Kota Abe / PIAX development team
*
* You can redistribute it and/or modify it under either the terms of
* the AGPLv3 or PIAX binary code license. See the file COPYING
* included in the PIAX package for more in detail.
*
* $Id: MSkipGraph.java 1160 2015-03-15 02:43:20Z teranisi $
*/
package org.piax.gtrans.ov.ring;
import java.io.Serializable;
import java.util.List;
import org.piax.common.DdllKey;
public abstract class ResponseMessage implements Serializable {
private static final long serialVersionUID = 1L;
protected final List unavailableKeys;
public ResponseMessage(List unavailableKeys) {
this.unavailableKeys = unavailableKeys;
}
public List unavailableKeys() {
return unavailableKeys;
}
}