• 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

0.0
/src/main/java/com/box/sdkgen/schemas/filefull/FileFullRepresentationsEntriesInfoField.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.Objects;
7

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

11
  protected String url;
12

13
  public FileFullRepresentationsEntriesInfoField() {
UNCOV
14
    super();
×
15
  }
×
16

17
  protected FileFullRepresentationsEntriesInfoField(Builder builder) {
UNCOV
18
    super();
×
UNCOV
19
    this.url = builder.url;
×
20
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
UNCOV
21
  }
×
22

23
  public String getUrl() {
UNCOV
24
    return url;
×
25
  }
26

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

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

44
  @Override
45
  public String toString() {
UNCOV
46
    return "FileFullRepresentationsEntriesInfoField{" + "url='" + url + '\'' + "}";
×
47
  }
48

UNCOV
49
  public static class Builder extends NullableFieldTracker {
×
50

51
    protected String url;
52

53
    public Builder url(String url) {
UNCOV
54
      this.url = url;
×
55
      return this;
×
56
    }
57

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