• 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/hubs/GetEnterpriseHubsV2025R0QueryParams.java
1
package com.box.sdkgen.managers.hubs;
2

3
import com.box.sdkgen.serialization.json.EnumWrapper;
4

5
public class GetEnterpriseHubsV2025R0QueryParams {
6

7
  public String query;
8

9
  public String sort;
10

11
  public EnumWrapper<GetEnterpriseHubsV2025R0QueryParamsDirectionField> direction;
12

13
  public String marker;
14

15
  public Long limit;
16

17
  public GetEnterpriseHubsV2025R0QueryParams() {}
×
18

UNCOV
19
  protected GetEnterpriseHubsV2025R0QueryParams(Builder builder) {
×
UNCOV
20
    this.query = builder.query;
×
UNCOV
21
    this.sort = builder.sort;
×
UNCOV
22
    this.direction = builder.direction;
×
UNCOV
23
    this.marker = builder.marker;
×
UNCOV
24
    this.limit = builder.limit;
×
UNCOV
25
  }
×
26

27
  public String getQuery() {
UNCOV
28
    return query;
×
29
  }
30

31
  public String getSort() {
UNCOV
32
    return sort;
×
33
  }
34

35
  public EnumWrapper<GetEnterpriseHubsV2025R0QueryParamsDirectionField> getDirection() {
UNCOV
36
    return direction;
×
37
  }
38

39
  public String getMarker() {
UNCOV
40
    return marker;
×
41
  }
42

43
  public Long getLimit() {
UNCOV
44
    return limit;
×
45
  }
46

UNCOV
47
  public static class Builder {
×
48

49
    protected String query;
50

51
    protected String sort;
52

53
    protected EnumWrapper<GetEnterpriseHubsV2025R0QueryParamsDirectionField> direction;
54

55
    protected String marker;
56

57
    protected Long limit;
58

59
    public Builder query(String query) {
60
      this.query = query;
×
61
      return this;
×
62
    }
63

64
    public Builder sort(String sort) {
UNCOV
65
      this.sort = sort;
×
UNCOV
66
      return this;
×
67
    }
68

69
    public Builder direction(GetEnterpriseHubsV2025R0QueryParamsDirectionField direction) {
UNCOV
70
      this.direction =
×
71
          new EnumWrapper<GetEnterpriseHubsV2025R0QueryParamsDirectionField>(direction);
UNCOV
72
      return this;
×
73
    }
74

75
    public Builder direction(
76
        EnumWrapper<GetEnterpriseHubsV2025R0QueryParamsDirectionField> direction) {
77
      this.direction = direction;
×
78
      return this;
×
79
    }
80

81
    public Builder marker(String marker) {
82
      this.marker = marker;
×
83
      return this;
×
84
    }
85

86
    public Builder limit(Long limit) {
87
      this.limit = limit;
×
88
      return this;
×
89
    }
90

91
    public GetEnterpriseHubsV2025R0QueryParams build() {
UNCOV
92
      return new GetEnterpriseHubsV2025R0QueryParams(this);
×
93
    }
94
  }
95
}
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