diff options
Diffstat (limited to 'src/main/java/com/p4square/ccbapi/model/CCBAPIResponse.java')
-rw-r--r-- | src/main/java/com/p4square/ccbapi/model/CCBAPIResponse.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/p4square/ccbapi/model/CCBAPIResponse.java b/src/main/java/com/p4square/ccbapi/model/CCBAPIResponse.java index d54c8a9..fa3d017 100644 --- a/src/main/java/com/p4square/ccbapi/model/CCBAPIResponse.java +++ b/src/main/java/com/p4square/ccbapi/model/CCBAPIResponse.java @@ -18,7 +18,7 @@ public abstract class CCBAPIResponse { /** * Return the error message if present. * - * @return A CCBErrorResponse if an error occurred. Null if the request was successful. + * @return A {@link CCBErrorResponse} if an error occurred. Null if the request was successful. */ public List<CCBErrorResponse> getErrors() { return errorResponses; @@ -27,7 +27,7 @@ public abstract class CCBAPIResponse { /** * Set the error response. * - * @param error The CCBErrorResponse to set. + * @param errors The list of {@link CCBErrorResponse}s to set. */ public void setErrors(final List<CCBErrorResponse> errors) { this.errorResponses = errors; |