76ffeaf7421433edd65043a185f0f2bd8653b718
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / quelaton / WithUri.java
1 package net.pterodactylus.fcp.quelaton;
2
3 import com.google.common.util.concurrent.ListenableFuture;
4
5 /**
6  * The terminal operation of an FCP command, requiring a Freenet URI.
7  *
8  * @param <R>
9  *      The type of the command result
10  * @author <a href="mailto:bombe@freenetproject.org">David ‘Bombe’ Roden</a>
11  */
12 public interface WithUri<R> {
13
14         ListenableFuture<R> uri(String uri);
15
16 }