Skip to content

Commit d9fb0cb

Browse files
committed
format for jdk11
1 parent d224b58 commit d9fb0cb

File tree

14 files changed

+57
-19
lines changed

14 files changed

+57
-19
lines changed

src/main/java/org/zendesk/client/v2/Zendesk.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2401,7 +2401,9 @@ public <T extends SearchResultEntity> Iterable<T> getSearchResults(Class<T> type
24012401
return getSearchResults(type, query, Collections.emptyMap());
24022402
}
24032403

2404-
/** @deprecated Use {@link #getSearchResults(Class, String, Map)} instead. */
2404+
/**
2405+
* @deprecated Use {@link #getSearchResults(Class, String, Map)} instead.
2406+
*/
24052407
@Deprecated
24062408
public <T extends SearchResultEntity> Iterable<T> getSearchResults(
24072409
Class<T> type, String query, String params) {
@@ -2871,7 +2873,9 @@ public Locales listHelpCenterLocales() {
28712873
return complete(submit(req("GET", cnst("/help_center/locales.json")), handle(Locales.class)));
28722874
}
28732875

2874-
/** @deprecated Use {@link Zendesk#listHelpCenterLocales()} instead */
2876+
/**
2877+
* @deprecated Use {@link Zendesk#listHelpCenterLocales()} instead
2878+
*/
28752879
@Deprecated
28762880
public List<String> getHelpCenterLocales() {
28772881
return listHelpCenterLocales().getLocales();

src/main/java/org/zendesk/client/v2/model/Condition.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
import java.io.Serializable;
44

5-
/** @author Sandeep Kaul ([email protected]) */
5+
/**
6+
* @author Sandeep Kaul ([email protected])
7+
*/
68
public class Condition implements Serializable {
79

810
private static final long serialVersionUID = 1L;

src/main/java/org/zendesk/client/v2/model/Conditions.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
import java.util.ArrayList;
55
import java.util.List;
66

7-
/** @author Sandeep Kaul([email protected]) */
7+
/**
8+
* @author Sandeep Kaul([email protected])
9+
*/
810
public class Conditions implements Serializable {
911

1012
private static final long serialVersionUID = 1L;

src/main/java/org/zendesk/client/v2/model/Metric.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
import java.io.Serializable;
55
import java.util.Date;
66

7-
/** @author jyrij */
7+
/**
8+
* @author jyrij
9+
*/
810
public class Metric implements Serializable {
911

1012
private static final long serialVersionUID = -847290591071406141L;
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
package org.zendesk.client.v2.model;
22

3-
/** @author Stephen Connolly */
3+
/**
4+
* @author Stephen Connolly
5+
*/
46
public interface SearchResultEntity {}

src/main/java/org/zendesk/client/v2/model/TicketImport.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
import java.util.Date;
66
import java.util.List;
77

8-
/** @author robert-fernandes */
8+
/**
9+
* @author robert-fernandes
10+
*/
911
@JsonIgnoreProperties(value = "comment", ignoreUnknown = true)
1012
public class TicketImport extends Ticket {
1113

src/main/java/org/zendesk/client/v2/model/schedules/Schedule.java

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ public void setId(Long id) {
2929
this.id = id;
3030
}
3131

32-
/** @return Name of the Schedule */
32+
/**
33+
* @return Name of the Schedule
34+
*/
3335
public String getName() {
3436
return name;
3537
}
@@ -38,7 +40,9 @@ public void setName(String name) {
3840
this.name = name;
3941
}
4042

41-
/** @return Time zone of the schedule */
43+
/**
44+
* @return Time zone of the schedule
45+
*/
4246
@JsonProperty("time_zone")
4347
public String getTimeZone() {
4448
return timeZone;
@@ -48,7 +52,9 @@ public void setTimeZone(String timeZone) {
4852
this.timeZone = timeZone;
4953
}
5054

51-
/** @return List of intervals for the schedule */
55+
/**
56+
* @return List of intervals for the schedule
57+
*/
5258
public List<Interval> getIntervals() {
5359
return intervals;
5460
}
@@ -57,7 +63,9 @@ public void setIntervals(List<Interval> intervals) {
5763
this.intervals = intervals;
5864
}
5965

60-
/** @return Time the schedule was created */
66+
/**
67+
* @return Time the schedule was created
68+
*/
6169
@JsonProperty("created_at")
6270
public Date getCreatedAt() {
6371
return createdAt;
@@ -67,7 +75,9 @@ public void setCreatedAt(Date createdAt) {
6775
this.createdAt = createdAt;
6876
}
6977

70-
/** @return Time the schedule was last updated */
78+
/**
79+
* @return Time the schedule was last updated
80+
*/
7181
@JsonProperty("updated_at")
7282
public Date getUpdatedAt() {
7383
return updatedAt;

src/main/java/org/zendesk/client/v2/model/targets/BasecampTarget.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
import com.fasterxml.jackson.annotation.JsonProperty;
44

5-
/** @author adavidson */
5+
/**
6+
* @author adavidson
7+
*/
68
public class BasecampTarget extends Target {
79
private String targetUrl;
810
private String token;

src/main/java/org/zendesk/client/v2/model/targets/CampfireTarget.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
import com.fasterxml.jackson.annotation.JsonProperty;
44

5-
/** @author adavidson */
5+
/**
6+
* @author adavidson
7+
*/
68
public class CampfireTarget extends Target {
79
private String subdomain;
810
private boolean ssl;

src/main/java/org/zendesk/client/v2/model/targets/EmailTarget.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
package org.zendesk.client.v2.model.targets;
22

3-
/** @author adavidson */
3+
/**
4+
* @author adavidson
5+
*/
46
public class EmailTarget extends Target {
57
private String email;
68
private String subject;

0 commit comments

Comments
 (0)