• 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/JwtConfigAppSettingsAppAuth.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 JwtConfigAppSettingsAppAuth extends SerializableObject {
10

11
  /** Public key ID */
12
  @JsonProperty("publicKeyID")
13
  protected final String publicKeyId;
14

15
  /** Private key */
16
  protected final String privateKey;
17

18
  /** Passphrase */
19
  protected final String passphrase;
20

21
  public JwtConfigAppSettingsAppAuth(
22
      @JsonProperty("publicKeyID") String publicKeyId,
23
      @JsonProperty("privateKey") String privateKey,
24
      @JsonProperty("passphrase") String passphrase) {
25
    super();
1✔
26
    this.publicKeyId = publicKeyId;
1✔
27
    this.privateKey = privateKey;
1✔
28
    this.passphrase = passphrase;
1✔
29
  }
1✔
30

31
  public String getPublicKeyId() {
32
    return publicKeyId;
1✔
33
  }
34

35
  public String getPrivateKey() {
36
    return privateKey;
1✔
37
  }
38

39
  public String getPassphrase() {
40
    return passphrase;
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
    JwtConfigAppSettingsAppAuth casted = (JwtConfigAppSettingsAppAuth) o;
×
52
    return Objects.equals(publicKeyId, casted.publicKeyId)
×
53
        && Objects.equals(privateKey, casted.privateKey)
×
54
        && Objects.equals(passphrase, casted.passphrase);
×
55
  }
56

57
  @Override
58
  public int hashCode() {
59
    return Objects.hash(publicKeyId, privateKey, passphrase);
×
60
  }
61

62
  @Override
63
  public String toString() {
64
    return "JwtConfigAppSettingsAppAuth{"
×
65
        + "publicKeyId='"
66
        + publicKeyId
67
        + '\''
68
        + ", "
69
        + "privateKey='"
70
        + privateKey
71
        + '\''
72
        + ", "
73
        + "passphrase='"
74
        + passphrase
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