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

box / box-java-sdk-gen / #294

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

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%)

11791 existing lines in 624 files now uncovered.

16939 of 47499 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/eventsource/EventSourceClassificationField.java
1
package com.box.sdkgen.schemas.eventsource;
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 EventSourceClassificationField extends SerializableObject {
10

11
  protected String name;
12

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

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

23
  public String getName() {
UNCOV
24
    return name;
×
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
    EventSourceClassificationField casted = (EventSourceClassificationField) o;
×
UNCOV
36
    return Objects.equals(name, casted.name);
×
37
  }
38

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

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

UNCOV
49
  public static class Builder extends NullableFieldTracker {
×
50

51
    protected String name;
52

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

58
    public EventSourceClassificationField build() {
UNCOV
59
      return new EventSourceClassificationField(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