import net.pterodactylus.util.config.ConfigurationException;
import net.pterodactylus.util.logging.Logging;
import net.pterodactylus.util.service.AbstractService;
+import freenet.client.FetchResult;
import freenet.keys.FreenetURI;
/**
}
/**
+ * Loads the Sone from the given request URI.
+ *
+ * @param requestUri
+ * The request URI to load the Sone from
+ */
+ public void loadSone(String requestUri) {
+ try {
+ FetchResult fetchResult = freenetInterface.fetchUri(new FreenetURI(requestUri).setMetaString(new String[] { "sone.xml" }));
+ } catch (MalformedURLException mue1) {
+ logger.log(Level.INFO, "Could not create URI from “" + requestUri + "”.", mue1);
+ }
+ }
+
+ /**
* Deletes the given Sone from this plugin instance.
*
* @param sone