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

box / box-java-sdk-gen / #380

17 Jul 2025 10:13AM UTC coverage: 37.552% (-0.5%) from 38.09%
#380

Pull #365

github

web-flow
Merge 9587c29b7 into 715ac2415
Pull Request #365: feat: Hub items API (box/box-openapi#538)

16 of 722 new or added lines in 27 files covered. (2.22%)

9 existing lines in 4 files now uncovered.

18552 of 49403 relevant lines covered (37.55%)

0.38 hits per line

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

0.0
/src/main/java/com/box/sdkgen/managers/hubitems/GetHubItemsV2025R0Headers.java
1
package com.box.sdkgen.managers.hubitems;
2

3
import static com.box.sdkgen.internal.utils.UtilsManager.mapOf;
4

5
import com.box.sdkgen.parameters.v2025r0.boxversionheaderv2025r0.BoxVersionHeaderV2025R0;
6
import com.box.sdkgen.serialization.json.EnumWrapper;
7
import java.util.Map;
8

9
public class GetHubItemsV2025R0Headers {
10

11
  public EnumWrapper<BoxVersionHeaderV2025R0> boxVersion;
12

13
  public Map<String, String> extraHeaders;
14

NEW
15
  public GetHubItemsV2025R0Headers() {
×
NEW
16
    this.boxVersion = new EnumWrapper<BoxVersionHeaderV2025R0>(BoxVersionHeaderV2025R0._2025_0);
×
NEW
17
    this.extraHeaders = mapOf();
×
NEW
18
  }
×
19

NEW
20
  protected GetHubItemsV2025R0Headers(Builder builder) {
×
NEW
21
    this.boxVersion = builder.boxVersion;
×
NEW
22
    this.extraHeaders = builder.extraHeaders;
×
NEW
23
  }
×
24

25
  public EnumWrapper<BoxVersionHeaderV2025R0> getBoxVersion() {
NEW
26
    return boxVersion;
×
27
  }
28

29
  public Map<String, String> getExtraHeaders() {
NEW
30
    return extraHeaders;
×
31
  }
32

33
  public static class Builder {
34

35
    protected EnumWrapper<BoxVersionHeaderV2025R0> boxVersion;
36

37
    protected Map<String, String> extraHeaders;
38

NEW
39
    public Builder() {
×
NEW
40
      this.boxVersion = new EnumWrapper<BoxVersionHeaderV2025R0>(BoxVersionHeaderV2025R0._2025_0);
×
NEW
41
      this.extraHeaders = mapOf();
×
NEW
42
    }
×
43

44
    public Builder boxVersion(BoxVersionHeaderV2025R0 boxVersion) {
NEW
45
      this.boxVersion = new EnumWrapper<BoxVersionHeaderV2025R0>(boxVersion);
×
NEW
46
      return this;
×
47
    }
48

49
    public Builder boxVersion(EnumWrapper<BoxVersionHeaderV2025R0> boxVersion) {
NEW
50
      this.boxVersion = boxVersion;
×
NEW
51
      return this;
×
52
    }
53

54
    public Builder extraHeaders(Map<String, String> extraHeaders) {
NEW
55
      this.extraHeaders = extraHeaders;
×
NEW
56
      return this;
×
57
    }
58

59
    public GetHubItemsV2025R0Headers build() {
NEW
60
      return new GetHubItemsV2025R0Headers(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