X-Git-Url: https://git.pterodactylus.net/?p=jFCPlib.git;a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Ffcp%2FPersistentPutDir.java;h=bf9f1aa15de81e6d225a972ead5273740ef7bea0;hp=569ca21276b527d6430cf80564aec8589898fc85;hb=450cca137543c1d8adfdca98b410dfefeb6256cf;hpb=4d849ec50a85129aa5259be84f4ffb3dbdd579e4 diff --git a/src/net/pterodactylus/fcp/PersistentPutDir.java b/src/net/pterodactylus/fcp/PersistentPutDir.java index 569ca21..bf9f1aa 100644 --- a/src/net/pterodactylus/fcp/PersistentPutDir.java +++ b/src/net/pterodactylus/fcp/PersistentPutDir.java @@ -23,14 +23,14 @@ package net.pterodactylus.fcp; * A “PersistentPutDir” is the response to a {@link ClientPutDiskDir} message. * It is also sent as a possible response to a {@link ListPersistentRequests} * message. - * + * * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ public class PersistentPutDir extends BaseMessage { /** * Creates a new “PersistentPutDir” message that wraps the received message. - * + * * @param receivedMessage * The received message */ @@ -40,7 +40,7 @@ public class PersistentPutDir extends BaseMessage { /** * Returns the identifier of the request. - * + * * @return The identifier of the request */ public String getIdentifier() { @@ -49,7 +49,7 @@ public class PersistentPutDir extends BaseMessage { /** * Returns the URI of the request. - * + * * @return The URI of the request */ public String getURI() { @@ -58,7 +58,7 @@ public class PersistentPutDir extends BaseMessage { /** * Returns the verbosity of the request. - * + * * @return The verbosity of the request */ public Verbosity getVerbosity() { @@ -67,7 +67,7 @@ public class PersistentPutDir extends BaseMessage { /** * Returns the priority of the request. - * + * * @return The priority of the request */ public Priority getPriority() { @@ -76,7 +76,7 @@ public class PersistentPutDir extends BaseMessage { /** * Returns whether the request is on the global queue. - * + * * @return true if the request is on the global queue, * false if it is on the client-local queue */ @@ -86,7 +86,7 @@ public class PersistentPutDir extends BaseMessage { /** * Returns the maximum number of retries for failed blocks. - * + * * @return The maximum number of retries, or -1 for endless * retries, or -2 if the number could not be parsed */ @@ -96,7 +96,7 @@ public class PersistentPutDir extends BaseMessage { /** * Returns the number of files in the request. - * + * * @return The number of files in the request */ public int getFileCount() { @@ -112,7 +112,7 @@ public class PersistentPutDir extends BaseMessage { /** * Returns the name of the file at the given index. The index is counted * from 0. - * + * * @param fileIndex * The index of the file * @return The name of the file at the given index @@ -124,7 +124,7 @@ public class PersistentPutDir extends BaseMessage { /** * Returns the length of the file at the given index. The index is counted * from 0. - * + * * @param fileIndex * The index of the file * @return The length of the file at the given index @@ -136,7 +136,7 @@ public class PersistentPutDir extends BaseMessage { /** * Returns the upload source of the file at the given index. The index is * counted from 0. - * + * * @param fileIndex * The index of the file * @return The upload source of the file at the given index @@ -148,7 +148,7 @@ public class PersistentPutDir extends BaseMessage { /** * Returns the content type of the file at the given index. The index is * counted from 0. - * + * * @param fileIndex * The index of the file * @return The content type of the file at the given index @@ -161,7 +161,7 @@ public class PersistentPutDir extends BaseMessage { * Returns the filename of the file at the given index. This value is only * returned if {@link #getFileUploadFrom(int)} is returning * {@link UploadFrom#disk}. The index is counted from 0. - * + * * @param fileIndex * The index of the file * @return The filename of the file at the given index