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

box / box-java-sdk-gen / #290

24 Jun 2025 01:20PM UTC coverage: 35.757% (+0.1%) from 35.632%
#290

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

11777 existing lines in 624 files now uncovered.

16984 of 47499 relevant lines covered (35.76%)

0.36 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

33.33
/src/main/java/com/box/sdkgen/managers/folders/CreateFolderRequestBodyParentField.java
1
package com.box.sdkgen.managers.folders;
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 CreateFolderRequestBodyParentField extends SerializableObject {
10

11
  protected final String id;
12

13
  public CreateFolderRequestBodyParentField(@JsonProperty("id") String id) {
14
    super();
1✔
15
    this.id = id;
1✔
16
  }
1✔
17

18
  public String getId() {
19
    return id;
1✔
20
  }
21

22
  @Override
23
  public boolean equals(Object o) {
UNCOV
24
    if (this == o) {
×
25
      return true;
×
26
    }
UNCOV
27
    if (o == null || getClass() != o.getClass()) {
×
28
      return false;
×
29
    }
UNCOV
30
    CreateFolderRequestBodyParentField casted = (CreateFolderRequestBodyParentField) o;
×
UNCOV
31
    return Objects.equals(id, casted.id);
×
32
  }
33

34
  @Override
35
  public int hashCode() {
UNCOV
36
    return Objects.hash(id);
×
37
  }
38

39
  @Override
40
  public String toString() {
UNCOV
41
    return "CreateFolderRequestBodyParentField{" + "id='" + id + '\'' + "}";
×
42
  }
43
}
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