• 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

0.0
/src/main/java/com/box/sdkgen/schemas/conflicterror/ConflictErrorContextInfoField.java
1
package com.box.sdkgen.schemas.conflicterror;
2

3
import com.box.sdkgen.internal.NullableFieldTracker;
4
import com.box.sdkgen.internal.SerializableObject;
5
import com.box.sdkgen.schemas.fileconflict.FileConflict;
6
import com.fasterxml.jackson.annotation.JsonFilter;
7
import java.util.List;
8
import java.util.Objects;
9

10
@JsonFilter("nullablePropertyFilter")
11
public class ConflictErrorContextInfoField extends SerializableObject {
12

13
  /** A list of the file conflicts that caused this error. */
14
  protected List<FileConflict> conflicts;
15

16
  public ConflictErrorContextInfoField() {
17
    super();
×
18
  }
×
19

20
  protected ConflictErrorContextInfoField(Builder builder) {
21
    super();
×
22
    this.conflicts = builder.conflicts;
×
23
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
24
  }
×
25

26
  public List<FileConflict> getConflicts() {
27
    return conflicts;
×
28
  }
29

30
  @Override
31
  public boolean equals(Object o) {
32
    if (this == o) {
×
33
      return true;
×
34
    }
35
    if (o == null || getClass() != o.getClass()) {
×
36
      return false;
×
37
    }
38
    ConflictErrorContextInfoField casted = (ConflictErrorContextInfoField) o;
×
39
    return Objects.equals(conflicts, casted.conflicts);
×
40
  }
41

42
  @Override
43
  public int hashCode() {
44
    return Objects.hash(conflicts);
×
45
  }
46

47
  @Override
48
  public String toString() {
49
    return "ConflictErrorContextInfoField{" + "conflicts='" + conflicts + '\'' + "}";
×
50
  }
51

52
  public static class Builder extends NullableFieldTracker {
×
53

54
    protected List<FileConflict> conflicts;
55

56
    public Builder conflicts(List<FileConflict> conflicts) {
57
      this.conflicts = conflicts;
×
58
      return this;
×
59
    }
60

61
    public ConflictErrorContextInfoField build() {
62
      return new ConflictErrorContextInfoField(this);
×
63
    }
64
  }
65
}
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