Skip to content

Commit

Permalink
fix javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Mario Bodemann committed Nov 12, 2018
1 parent e7a0c41 commit 94dd801
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/contentful/java/cda/AbsQuery.java
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ public Query reverseOrderBy(String key) {
* Limits the amount of elements to a given number.
* <p>
* If more then the number given elements are present, you can use {@link #skip(int)} and
* {@see #limit(int)} for pagination.
* this method for pagination.
*
* @param limit a non negative number less than 1001 to include elements.
* @return the calling query for chaining.
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/contentful/java/cda/CDAClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -706,6 +706,9 @@ public OkHttpClient.Builder defaultCallFactoryBuilder() {
* Some operation systems and frameworks, esp. Android and Java 1.6, might opt for implementing
* TLS12 (enforced by Contentful) but do not enable it. The SDK tries to find those situations
* and recommends to either use the system TLSSocketFactory or a SDK provided one.
*
* @param implementation which implementation to be used.
* @return this builder for ease of chaining.
*/
public Builder setTls12Implementation(Tls12Implementation implementation) {
this.tls12Implementation = implementation;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ public <T> T getField(String key) {
/**
* Extracts a field from the fields set of the active locale, result type is inferred.
*
* @param locale locale to be used.
* @param key field key.
* @param <T> type.
* @return field value, null if it doesn't exist.
Expand Down
1 change: 1 addition & 0 deletions src/main/java/com/contentful/java/cda/SyncType.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ public static SyncType allEntries() {
/**
* Sync all entries of a specific content type.
*
* @param type which content type to sync.
* @return a type syncing all entries of a specific type.
* @see <a href=https://www.contentful.com/developers/docs/references/content-delivery-api/#/reference/synchronization/initial-synchronization-of-entries-of-a-specific-content-type>Contentful Docs</a>
*/
Expand Down

0 comments on commit 94dd801

Please sign in to comment.