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

box / box-java-sdk-gen / #295

24 Jun 2025 01:20PM UTC coverage: 35.661% (+0.03%) from 35.632%
#295

Pull #347

github

web-flow
Merge 2c100d09c into d8480ee6c
Pull Request #347: feat: Add Webhook Validation In Java (box/box-codegen#745)

68 of 82 new or added lines in 2 files covered. (82.93%)

11794 existing lines in 627 files now uncovered.

16937 of 47495 relevant lines covered (35.66%)

0.36 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
  @JsonProperty("clientID")
12
  protected final String clientId;
13

14
  protected final String clientSecret;
15

16
  protected final JwtConfigAppSettingsAppAuth appAuth;
17

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

28
  public String getClientId() {
29
    return clientId;
1✔
30
  }
31

32
  public String getClientSecret() {
33
    return clientSecret;
1✔
34
  }
35

36
  public JwtConfigAppSettingsAppAuth getAppAuth() {
37
    return appAuth;
1✔
38
  }
39

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

54
  @Override
55
  public int hashCode() {
UNCOV
56
    return Objects.hash(clientId, clientSecret, appAuth);
×
57
  }
58

59
  @Override
60
  public String toString() {
UNCOV
61
    return "JwtConfigAppSettings{"
×
62
        + "clientId='"
63
        + clientId
64
        + '\''
65
        + ", "
66
        + "clientSecret='"
67
        + clientSecret
68
        + '\''
69
        + ", "
70
        + "appAuth='"
71
        + appAuth
72
        + '\''
73
        + "}";
74
  }
75
}
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