From ec47933e9c47eb71391c77c29b5e8ab4e39b5066 Mon Sep 17 00:00:00 2001 From: George Nash Date: Mon, 9 Jan 2017 15:30:01 -0800 Subject: [PATCH] Cleanup documentation warning in RcsGetResponse.java Change-Id: I52bf4cc5f4a71ddb578ecee794f41df3ceb0c9fe Signed-off-by: George Nash Reviewed-on: https://gerrit.iotivity.org/gerrit/16271 Tested-by: jenkins-iotivity Reviewed-by: Larry Sachs Reviewed-by: Rick Bell --- .../java/org/iotivity/service/server/RcsGetResponse.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/service/resource-encapsulation/android/service/src/main/java/org/iotivity/service/server/RcsGetResponse.java b/service/resource-encapsulation/android/service/src/main/java/org/iotivity/service/server/RcsGetResponse.java index 96dcd24bb..19a62a406 100644 --- a/service/resource-encapsulation/android/service/src/main/java/org/iotivity/service/server/RcsGetResponse.java +++ b/service/resource-encapsulation/android/service/src/main/java/org/iotivity/service/server/RcsGetResponse.java @@ -31,10 +31,10 @@ import org.iotivity.service.RcsResourceAttributes; public class RcsGetResponse extends RcsResponse { /** - * Creates a default RCcsGetResponse. The response will have + * Creates a default RcsGetResponse. The response will have * {@link #DEFAULT_ERROR_CODE} for the errorCode. The attributes of * {@link RcsResourceObject} will be set as the result attributes. - * + * @return The default RcsGetResponse */ public static RcsGetResponse defaultAction() { return new RcsGetResponse(); @@ -47,6 +47,7 @@ public class RcsGetResponse extends RcsResponse { * * @param errorCode * error code to be set in response + * @return The created RcsGetResponse * */ public static RcsGetResponse create(int errorCode) { @@ -62,6 +63,7 @@ public class RcsGetResponse extends RcsResponse { * * @param attributes * attributes to be sent as the result + * @return The created RcsGetResponse * */ public static RcsGetResponse create(RcsResourceAttributes attributes) { @@ -77,6 +79,7 @@ public class RcsGetResponse extends RcsResponse { * attributes to be sent as the result * @param errorCode * error code for response + * @return The created RcsGetResponse * */ public static RcsGetResponse create(RcsResourceAttributes attributes, -- 2.34.1