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

box / box-java-sdk / #4766

04 Sep 2025 02:54PM UTC coverage: 37.239% (-1.6%) from 38.858%
#4766

push

github

web-flow
feat: Support event with long polling (box/box-codegen#807) (#1409)

32 of 420 new or added lines in 7 files covered. (7.62%)

800 existing lines in 66 files now uncovered.

18480 of 49626 relevant lines covered (37.24%)

0.37 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/GetHubItemsV2025R0QueryParams.java
1
package com.box.sdkgen.managers.hubitems;
2

3
public class GetHubItemsV2025R0QueryParams {
4

5
  public final String hubId;
6

7
  public String marker;
8

9
  public Long limit;
10

UNCOV
11
  public GetHubItemsV2025R0QueryParams(String hubId) {
×
UNCOV
12
    this.hubId = hubId;
×
UNCOV
13
  }
×
14

15
  protected GetHubItemsV2025R0QueryParams(Builder builder) {
×
16
    this.hubId = builder.hubId;
×
17
    this.marker = builder.marker;
×
18
    this.limit = builder.limit;
×
19
  }
×
20

21
  public String getHubId() {
UNCOV
22
    return hubId;
×
23
  }
24

25
  public String getMarker() {
UNCOV
26
    return marker;
×
27
  }
28

29
  public Long getLimit() {
UNCOV
30
    return limit;
×
31
  }
32

33
  public static class Builder {
34

35
    protected final String hubId;
36

37
    protected String marker;
38

39
    protected Long limit;
40

41
    public Builder(String hubId) {
×
42
      this.hubId = hubId;
×
43
    }
×
44

45
    public Builder marker(String marker) {
46
      this.marker = marker;
×
47
      return this;
×
48
    }
49

50
    public Builder limit(Long limit) {
51
      this.limit = limit;
×
52
      return this;
×
53
    }
54

55
    public GetHubItemsV2025R0QueryParams build() {
56
      return new GetHubItemsV2025R0QueryParams(this);
×
57
    }
58
  }
59
}
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