@@ -57,8 +57,7 @@ protected void setStackInstance(@NotNull Stack stack) {
5757 /**
5858 * Configure asset.
5959 *
60- * @param jsonObject
61- * the json object
60+ * @param jsonObject the json object
6261 * @return the asset
6362 */
6463 public Asset configure (JSONObject jsonObject ) {
@@ -77,19 +76,17 @@ public Asset configure(JSONObject jsonObject) {
7776 /**
7877 * Sets header.
7978 *
80- * @param headerKey
81- * the header key
82- * @param headerValue
83- * the header value
84- *
85- * <br>
86- * <br>
87- * <b>Example :</b><br>
88- * <p>
89- * <code>
90- * Stack stack = Contentstack.stack("apiKey", "deliveryToken", "environment"); Asset asset =
91- * stack.asset(asset_uid); asset.setHeader();
92- * </code>
79+ * @param headerKey the header key
80+ * @param headerValue the header value
81+ *
82+ * <br>
83+ * <br>
84+ * <b>Example :</b><br>
85+ * <p>
86+ * <code>
87+ * Stack stack = Contentstack.stack("apiKey", "deliveryToken", "environment"); Asset asset =
88+ * stack.asset(asset_uid); asset.setHeader();
89+ * </code>
9390 */
9491 public void setHeader (@ NotNull String headerKey , @ NotNull String headerValue ) {
9592 headers .put (headerKey , headerValue );
@@ -98,17 +95,16 @@ public void setHeader(@NotNull String headerKey, @NotNull String headerValue) {
9895 /**
9996 * Remove header.
10097 *
101- * @param headerKey
102- * the header key
103- *
104- * <br>
105- * <br>
106- * <b>Example :</b>
107- * <p>
108- * <code>
109- * Stack stack = Contentstack.stack("apiKey", "deliveryToken", "environment"); Asset asset =
110- * stack.asset(asset_uid); asset.removeHeader();
111- * <code>
98+ * @param headerKey the header key
99+ *
100+ * <br>
101+ * <br>
102+ * <b>Example :</b>
103+ * <p>
104+ * <code>
105+ * Stack stack = Contentstack.stack("apiKey", "deliveryToken", "environment"); Asset asset =
106+ * stack.asset(asset_uid); asset.removeHeader();
107+ * <code>
112108 */
113109 public void removeHeader (@ NotNull String headerKey ) {
114110 headers .remove (headerKey );
@@ -457,10 +453,8 @@ public Asset includeDimension() {
457453 /**
458454 * Add param asset.
459455 *
460- * @param paramKey
461- * the param key
462- * @param paramValue
463- * the param value
456+ * @param paramKey the param key
457+ * @param paramValue the param value
464458 * @return the asset
465459 *
466460 * <br>
@@ -538,8 +532,7 @@ public Asset includeMetadata() {
538532 /**
539533 * Fetch.
540534 *
541- * @param callback
542- * the callback
535+ * @param callback the callback
543536 */
544537 public void fetch (FetchResultCallback callback ) {
545538 urlQueries .put (ENVIRONMENT , this .headers .get (ENVIRONMENT ));
0 commit comments