X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Ffcp%2FPersistentRequestRemoved.java;h=154c88c8064a295d71166ab0975c4941c7094b6b;hb=dd605aee444057a874fabf7fb0045b8448b0d1cd;hp=c9caccef10dbc61cf9c7825df9d71ff167d95363;hpb=f553531be78d6d6d95dc152728f2b8d40242b57d;p=jFCPlib.git diff --git a/src/net/pterodactylus/fcp/PersistentRequestRemoved.java b/src/net/pterodactylus/fcp/PersistentRequestRemoved.java index c9cacce..154c88c 100644 --- a/src/net/pterodactylus/fcp/PersistentRequestRemoved.java +++ b/src/net/pterodactylus/fcp/PersistentRequestRemoved.java @@ -1,6 +1,5 @@ /* - * jSite2 - PersistentRequestRemoved.java - - * Copyright © 2008 David Roden + * jFCPlib - PersistentRequestRemoved.java - Copyright © 2008 David Roden * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -22,16 +21,15 @@ package net.pterodactylus.fcp; /** * A “PersistentRequestRemoved” message signals that a persistent request was * removed from either the global or the client-local queue. - * + * * @author David ‘Bombe’ Roden <bombe@freenetproject.org> - * @version $Id$ */ public class PersistentRequestRemoved extends BaseMessage { /** * Creates a new “PersistentRequestRemoved” message that wraps the received * message. - * + * * @param receivedMessage * The received message */ @@ -41,7 +39,7 @@ public class PersistentRequestRemoved extends BaseMessage { /** * Returns the identifier of the request. - * + * * @return The identifier of the request */ public String getIdentifier() { @@ -50,10 +48,10 @@ public class PersistentRequestRemoved extends BaseMessage { /** * Returns whether the request was removed from the global queue. - * + * * @return true if the request was removed from the global - * queue, false if it was removed from the - * client-local queue + * queue, false if it was removed from the client-local + * queue */ public boolean isGlobal() { return Boolean.valueOf(getField("Global"));