• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

box / box-java-sdk / #5076

07 Oct 2025 12:35PM UTC coverage: 37.132% (+0.007%) from 37.125%
#5076

push

github

web-flow
test: Change `Event.additionalDetails` field assertion in events test (box/box-codegen#858) (#1491)

18454 of 49699 relevant lines covered (37.13%)

0.37 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

44.44
/src/main/java/com/box/sdkgen/box/jwtauth/JwtConfigAppSettings.java
1
package com.box.sdkgen.box.jwtauth;
2

3
import com.box.sdkgen.internal.SerializableObject;
4
import com.fasterxml.jackson.annotation.JsonFilter;
5
import com.fasterxml.jackson.annotation.JsonProperty;
6
import java.util.Objects;
7

8
@JsonFilter("nullablePropertyFilter")
9
public class JwtConfigAppSettings extends SerializableObject {
10

11
  /** App client ID */
12
  @JsonProperty("clientID")
13
  protected final String clientId;
14

15
  /** App client secret */
16
  protected final String clientSecret;
17

18
  /** App auth settings */
19
  protected final JwtConfigAppSettingsAppAuth appAuth;
20

21
  public JwtConfigAppSettings(
22
      @JsonProperty("clientID") String clientId,
23
      @JsonProperty("clientSecret") String clientSecret,
24
      @JsonProperty("appAuth") JwtConfigAppSettingsAppAuth appAuth) {
25
    super();
1✔
26
    this.clientId = clientId;
1✔
27
    this.clientSecret = clientSecret;
1✔
28
    this.appAuth = appAuth;
1✔
29
  }
1✔
30

31
  public String getClientId() {
32
    return clientId;
1✔
33
  }
34

35
  public String getClientSecret() {
36
    return clientSecret;
1✔
37
  }
38

39
  public JwtConfigAppSettingsAppAuth getAppAuth() {
40
    return appAuth;
1✔
41
  }
42

43
  @Override
44
  public boolean equals(Object o) {
45
    if (this == o) {
×
46
      return true;
×
47
    }
48
    if (o == null || getClass() != o.getClass()) {
×
49
      return false;
×
50
    }
51
    JwtConfigAppSettings casted = (JwtConfigAppSettings) o;
×
52
    return Objects.equals(clientId, casted.clientId)
×
53
        && Objects.equals(clientSecret, casted.clientSecret)
×
54
        && Objects.equals(appAuth, casted.appAuth);
×
55
  }
56

57
  @Override
58
  public int hashCode() {
59
    return Objects.hash(clientId, clientSecret, appAuth);
×
60
  }
61

62
  @Override
63
  public String toString() {
64
    return "JwtConfigAppSettings{"
×
65
        + "clientId='"
66
        + clientId
67
        + '\''
68
        + ", "
69
        + "clientSecret='"
70
        + clientSecret
71
        + '\''
72
        + ", "
73
        + "appAuth='"
74
        + appAuth
75
        + '\''
76
        + "}";
77
  }
78
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc