summaryrefslogtreecommitdiff
path: root/src/main/java/com/p4square/ccbapi/model/CCBAPIResponse.java
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2016-04-09 12:11:04 -0700
committerJesse Morgan <jesse@jesterpm.net>2016-04-09 12:11:04 -0700
commitc8dbb4be4de701c10587976864e1d4e843f595c9 (patch)
tree4a8f6836e89fb4ddb588b62d681174352c265150 /src/main/java/com/p4square/ccbapi/model/CCBAPIResponse.java
parent9e52e9f1209ef07a607be6a689b6789402335783 (diff)
Fixing javadoc.
Diffstat (limited to 'src/main/java/com/p4square/ccbapi/model/CCBAPIResponse.java')
-rw-r--r--src/main/java/com/p4square/ccbapi/model/CCBAPIResponse.java4
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;