Add ListPeer command
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / ListPeerCommand.java
1 package net.pterodactylus.fcp.quelaton;
2
3 import java.util.Optional;
4
5 import net.pterodactylus.fcp.Peer;
6
7 /**
8  * Lists a single peer by its name (darknet only), identity, or host name/IP address and port number.
9  *
10  * @author <a href="mailto:bombe@freenetproject.org">David ‘Bombe’ Roden</a>
11  */
12 public interface ListPeerCommand {
13
14         Executable<Optional<Peer>> byName(String name);
15         Executable<Optional<Peer>> byIdentity(String identity);
16         Executable<Optional<Peer>> byHostAndPort(String host, int port);
17
18 }