Expose lots of constructors and accessors
[jFCPlib.git] / src / main / java / net / pterodactylus / fcp / PutFailed.java
index 2211dfc..7853d39 100644 (file)
@@ -38,15 +38,15 @@ public class PutFailed extends BaseMessage implements Identifiable {
         * @param receivedMessage
         *            The received message
         */
-       PutFailed(FcpMessage receivedMessage) {
+       public PutFailed(FcpMessage receivedMessage) {
                super(receivedMessage);
        }
 
        /**
         * Returns the code of the error.
         *
-        * @return The code of the error, or <code>-1</code> if the error code could
-        *         not be parsed
+        * @return The code of the error, or <code>-1</code> if the error code
+        *         could not be parsed
         */
        public int getCode() {
                return FcpUtils.safeParseInt(getField("Code"));
@@ -57,6 +57,7 @@ public class PutFailed extends BaseMessage implements Identifiable {
         *
         * @return The identifier of the request
         */
+       @Override
        public String getIdentifier() {
                return getField("Identifier");
        }
@@ -108,8 +109,8 @@ public class PutFailed extends BaseMessage implements Identifiable {
        }
 
        /**
-        * Returns whether the request failed fatally. If a request fails fatally it
-        * can never complete, even with inifinite retries.
+        * Returns whether the request failed fatally. If a request fails fatally
+        * it can never complete, even with inifinite retries.
         *
         * @return <code>true</code> if the request failed fatally,
         *         <code>false</code> otherwise