Clean up imports
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / ListPeersCommand.java
1 package net.pterodactylus.fcp.quelaton;
2
3 import java.util.Collection;
4
5 import net.pterodactylus.fcp.Peer;
6
7 /**
8  * Retrieves the list of all peers from the FCP server.
9  *
10  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
11  */
12 public interface ListPeersCommand extends Executable<Collection<Peer>> {
13
14         ListPeersCommand includeMetadata();
15         ListPeersCommand includeVolatile();
16
17 }