/* This code is part of Freenet. It is distributed under the GNU General
* Public License, version 2 (or at your option any later version). See
* http://www.gnu.org/ for further details of the GPL. */
package freenet.clients.fcp;
import freenet.node.Node;
import freenet.support.SimpleFieldSet;
/**
* Node answer message after a RemovePersistentRequest message from client.
*/
public class PersistentRequestRemovedMessage extends FCPMessage {
private final String ident;
private final boolean global;
public PersistentRequestRemovedMessage(String identifier, boolean global) {
this.ident = identifier;
this.global = global;
}
@Override
public SimpleFieldSet getFieldSet() {
SimpleFieldSet fs = new SimpleFieldSet(true);
fs.putSingle("Identifier", ident);
fs.put("Global", global);
return fs;
}
@Override
public String getName() {
return "PersistentRequestRemoved";
}
@Override
public void run(FCPConnectionHandler handler, Node node) throws MessageInvalidException {
throw new MessageInvalidException(ProtocolErrorMessage.INVALID_MESSAGE, "PersistentRequestRemoved goes from server to client not the other way around", ident, global);
}
}