More whitespace fixes.
[jFCPlib.git] / src / net / pterodactylus / fcp / PersistentPut.java
index dc9ec4c..383ea93 100644 (file)
@@ -1,6 +1,5 @@
 /*
- * jSite2 - PersistentPut.java -
- * Copyright © 2008 David Roden
+ * jFCPlib - PersistentPut.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,14 +21,14 @@ package net.pterodactylus.fcp;
 /**
  * A “PersistentPut” message notifies a client about a persistent
  * {@link ClientPut} request.
- * 
+ *
  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
  */
 public class PersistentPut extends BaseMessage {
 
        /**
         * Creates a new “PersistentPut” message that wraps the received message.
-        * 
+        *
         * @param receivedMessage
         *            The received message
         */
@@ -39,7 +38,7 @@ public class PersistentPut extends BaseMessage {
 
        /**
         * Returns the client token of the request.
-        * 
+        *
         * @return The client token of the request
         */
        public String getClientToken() {
@@ -48,7 +47,7 @@ public class PersistentPut extends BaseMessage {
 
        /**
         * Returns the data length of the request.
-        * 
+        *
         * @return The data length of the request, or <code>-1</code> if the length
         *         could not be parsed
         */
@@ -58,7 +57,7 @@ public class PersistentPut extends BaseMessage {
 
        /**
         * Returns whether the request is on the global queue.
-        * 
+        *
         * @return <code>true</code> if the request is on the global queue,
         *         <code>false</code> otherwise
         */
@@ -68,7 +67,7 @@ public class PersistentPut extends BaseMessage {
 
        /**
         * Returns the identifier of the request.
-        * 
+        *
         * @return The identifier of the request
         */
        public String getIdentifier() {
@@ -78,7 +77,7 @@ public class PersistentPut extends BaseMessage {
        /**
         * Returns the maximum number of retries for failed blocks. When
         * <code>-1</code> is returned each block is tried forever.
-        * 
+        *
         * @return The maximum number of retries for failed blocks, or
         *         <code>-1</code> for unlimited retries, or <code>-2</code> if the
         *         number of retries could not be parsed
@@ -89,7 +88,7 @@ public class PersistentPut extends BaseMessage {
 
        /**
         * Returns the content type of the data.
-        * 
+        *
         * @return The content type
         */
        public String getMetadataContentType() {
@@ -98,7 +97,7 @@ public class PersistentPut extends BaseMessage {
 
        /**
         * Returns the persistence of the request.
-        * 
+        *
         * @return The persistence of the request
         */
        public Persistence getPersistence() {
@@ -107,7 +106,7 @@ public class PersistentPut extends BaseMessage {
 
        /**
         * Returns the priority of the request.
-        * 
+        *
         * @return The priority of the request, or {@link Priority#unknown} if the
         *         priority could not be parsed
         */
@@ -117,7 +116,7 @@ public class PersistentPut extends BaseMessage {
 
        /**
         * Returns whether this request has started.
-        * 
+        *
         * @return <code>true</code> if the request has started, <code>false</code>
         *         otherwise
         */
@@ -127,7 +126,7 @@ public class PersistentPut extends BaseMessage {
 
        /**
         * Returns the target filename of the request.
-        * 
+        *
         * @return The target filename of the request
         */
        public String getTargetFilename() {
@@ -136,7 +135,7 @@ public class PersistentPut extends BaseMessage {
 
        /**
         * Returns the upload source of the request.
-        * 
+        *
         * @return The upload source of the request
         */
        public UploadFrom getUploadFrom() {
@@ -145,7 +144,7 @@ public class PersistentPut extends BaseMessage {
 
        /**
         * Returns the target URI of the request.
-        * 
+        *
         * @return The target URI of the request
         */
        public String getURI() {
@@ -154,7 +153,7 @@ public class PersistentPut extends BaseMessage {
 
        /**
         * Returns the verbosity of the request.
-        * 
+        *
         * @return The verbosity of the request
         */
        public Verbosity getVerbosity() {