33import java .util .Objects ;
44
55/**
6- * The Content Delivery API is used to retrieve content from your Contentstack
7- * account and deliver it to your web or mobile properties. If you are looking
8- * for APIs to manage content, you should use the Content Management API
6+ * The Content Delivery API is used to retrieve content from your Contentstack account and deliver it to your web or
7+ * mobile properties. If you are looking for APIs to manage content, you should use the Content Management API
98 * <p>
10- * Our APIs serve content via a powerful and robust content delivery network
11- * (CDN). Multiple datacenters around the world store a cached copy of your
12- * content. When a page request is made, the content is delivered to the user
13- * from the nearest server. This greatly accelerates content delivery and
14- * reduces latency.
9+ * Our APIs serve content via a powerful and robust content delivery network (CDN). Multiple datacenters around the
10+ * world store a cached copy of your content. When a page request is made, the content is delivered to the user from the
11+ * nearest server. This greatly accelerates content delivery and reduces latency.
1512 */
1613public class Contentstack {
1714
@@ -21,28 +18,30 @@ protected Contentstack() throws IllegalAccessException {
2118 }
2219
2320 /**
24- * A stack is a space that stores the content of a project (a web or mobile
25- * property). Within a stack, you can create content structures, content
26- * entries, users, etc. related to the project. <br>
27- * Authenticates the stack api key of your stack. <br>
28- * Find Your Stack Credentials from Contentstack .
21+ * A stack is a space that stores the content of a project (a web or mobile property). Within a stack, you can
22+ * create content structures, content entries, users, etc. related to the project. <br> Authenticates the stack api
23+ * key of your stack. <br> Find Your Stack Credentials from Contentstack .
2924 *
30- * @param stackApiKey The API Key is a unique key assigned to each stack.
31- * @param deliveryToken The Delivery Token is a read-only credential that you
32- * can create for different environments of your stack
33- * @param environment the environment for the stack
25+ * @param stackApiKey
26+ * The API Key is a unique key assigned to each stack.
27+ * @param deliveryToken
28+ * The Delivery Token is a read-only credential that you can create for different environments of your
29+ * stack
30+ * @param environment
31+ * the environment for the stack
3432 * @return the stack
35- * @throws IllegalAccessException the illegal access exception
33+ * @throws IllegalAccessException
34+ * the illegal access exception
35+ * <p>
36+ * <b>Example</b>
3637 *
37- * <b>Example</b>
38- *
39- * <pre>
40- * {
41- * @Code
42- * Stack stack = contentstack.Stack("apiKey", "deliveryToken", "environment");
43- * }
38+ * <pre>
39+ * {
40+ * @Code
41+ * Stack stack = contentstack.Stack("apiKey", "deliveryToken", "environment");
42+ * }
4443 *
45- * </pre>
44+ * </pre>
4645 */
4746 public static Stack stack (String stackApiKey , String deliveryToken , String environment )
4847 throws IllegalAccessException {
@@ -52,21 +51,23 @@ public static Stack stack(String stackApiKey, String deliveryToken, String envir
5251 }
5352
5453 /**
55- * A stack is a space that stores the content of a project (a web or mobile
56- * property). Within a stack, you can create content structures, content
57- * entries, users, etc. related to the project.
54+ * A stack is a space that stores the content of a project (a web or mobile property). Within a stack, you can
55+ * create content structures, content entries, users, etc. related to the project.
5856 *
59- * @param stackApiKey The API Key is a unique key assigned to each stack.
60- * @param deliveryToken The Delivery Token is a read-only credential that you
61- * can create for different environments of your stack
62- * @param environment the environment for the stack
63- * @param config the config
57+ * @param stackApiKey
58+ * The API Key is a unique key assigned to each stack.
59+ * @param deliveryToken
60+ * The Delivery Token is a read-only credential that you can create for different environments of your
61+ * stack
62+ * @param environment
63+ * the environment for the stack
64+ * @param config
65+ * the config
6466 * @return the stack
65- * @throws IllegalAccessException the illegal access exception <b>Example</b>
66- *
67- * { @Code Stack stack =
68- * contentstack.Stack("apiKey", "deliveryToken",
69- * "environment"); }
67+ * @throws IllegalAccessException
68+ * the illegal access exception <b>Example</b>
69+ * <p>
70+ * { @Code Stack stack = contentstack.Stack("apiKey", "deliveryToken", "environment"); }
7071 */
7172 public static Stack stack (String stackApiKey , String deliveryToken , String environment , Config config )
7273 throws IllegalAccessException {
0 commit comments