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

box / box-java-sdk-gen / #293

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

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

0.0
/src/main/java/com/box/sdkgen/schemas/filefull/FileFullRepresentationsField.java
1
package com.box.sdkgen.schemas.filefull;
2

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

9
@JsonFilter("nullablePropertyFilter")
10
public class FileFullRepresentationsField extends SerializableObject {
11

12
  protected List<FileFullRepresentationsEntriesField> entries;
13

14
  public FileFullRepresentationsField() {
UNCOV
15
    super();
×
16
  }
×
17

18
  protected FileFullRepresentationsField(Builder builder) {
UNCOV
19
    super();
×
UNCOV
20
    this.entries = builder.entries;
×
21
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
UNCOV
22
  }
×
23

24
  public List<FileFullRepresentationsEntriesField> getEntries() {
UNCOV
25
    return entries;
×
26
  }
27

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

40
  @Override
41
  public int hashCode() {
UNCOV
42
    return Objects.hash(entries);
×
43
  }
44

45
  @Override
46
  public String toString() {
UNCOV
47
    return "FileFullRepresentationsField{" + "entries='" + entries + '\'' + "}";
×
48
  }
49

UNCOV
50
  public static class Builder extends NullableFieldTracker {
×
51

52
    protected List<FileFullRepresentationsEntriesField> entries;
53

54
    public Builder entries(List<FileFullRepresentationsEntriesField> entries) {
UNCOV
55
      this.entries = entries;
×
56
      return this;
×
57
    }
58

59
    public FileFullRepresentationsField build() {
UNCOV
60
      return new FileFullRepresentationsField(this);
×
61
    }
62
  }
63
}
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