Add test for unknown node identifiers on modify peer command
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / ListPeersCommand.java
index 56a28c2..4a71971 100644 (file)
@@ -1,7 +1,6 @@
 package net.pterodactylus.fcp.quelaton;
 
 import java.util.Collection;
-import java.util.concurrent.Future;
 
 import net.pterodactylus.fcp.Peer;
 
@@ -10,8 +9,9 @@ import net.pterodactylus.fcp.Peer;
  *
  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
  */
-public interface ListPeersCommand {
+public interface ListPeersCommand extends Executable<Collection<Peer>> {
 
-       Future<Collection<Peer>> execute();
+       ListPeersCommand includeMetadata();
+       ListPeersCommand includeVolatile();
 
 }