Add flag to GetNode command to include volatile data
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / GetNodeCommand.java
1 package net.pterodactylus.fcp.quelaton;
2
3 import net.pterodactylus.fcp.NodeData;
4
5 /**
6  * Returns information about the FCP server itself.
7  *
8  * @author <a href="mailto:bombe@freenetproject.org">David ‘Bombe’ Roden</a>
9  */
10 public interface GetNodeCommand extends Executable<NodeData> {
11
12         GetNodeCommand opennetRef();
13         GetNodeCommand includePrivate();
14         GetNodeCommand includeVolatile();
15
16 }