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

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

5
public class GetHubsV2025R0QueryParams {
6

7
  public String query;
8

9
  public String scope;
10

11
  public String sort;
12

13
  public EnumWrapper<GetHubsV2025R0QueryParamsDirectionField> direction;
14

15
  public String marker;
16

17
  public Long limit;
18

19
  public GetHubsV2025R0QueryParams() {}
×
20

UNCOV
21
  protected GetHubsV2025R0QueryParams(Builder builder) {
×
UNCOV
22
    this.query = builder.query;
×
UNCOV
23
    this.scope = builder.scope;
×
UNCOV
24
    this.sort = builder.sort;
×
UNCOV
25
    this.direction = builder.direction;
×
UNCOV
26
    this.marker = builder.marker;
×
UNCOV
27
    this.limit = builder.limit;
×
UNCOV
28
  }
×
29

30
  public String getQuery() {
UNCOV
31
    return query;
×
32
  }
33

34
  public String getScope() {
UNCOV
35
    return scope;
×
36
  }
37

38
  public String getSort() {
UNCOV
39
    return sort;
×
40
  }
41

42
  public EnumWrapper<GetHubsV2025R0QueryParamsDirectionField> getDirection() {
UNCOV
43
    return direction;
×
44
  }
45

46
  public String getMarker() {
UNCOV
47
    return marker;
×
48
  }
49

50
  public Long getLimit() {
UNCOV
51
    return limit;
×
52
  }
53

UNCOV
54
  public static class Builder {
×
55

56
    protected String query;
57

58
    protected String scope;
59

60
    protected String sort;
61

62
    protected EnumWrapper<GetHubsV2025R0QueryParamsDirectionField> direction;
63

64
    protected String marker;
65

66
    protected Long limit;
67

68
    public Builder query(String query) {
69
      this.query = query;
×
70
      return this;
×
71
    }
72

73
    public Builder scope(String scope) {
UNCOV
74
      this.scope = scope;
×
UNCOV
75
      return this;
×
76
    }
77

78
    public Builder sort(String sort) {
UNCOV
79
      this.sort = sort;
×
UNCOV
80
      return this;
×
81
    }
82

83
    public Builder direction(GetHubsV2025R0QueryParamsDirectionField direction) {
UNCOV
84
      this.direction = new EnumWrapper<GetHubsV2025R0QueryParamsDirectionField>(direction);
×
UNCOV
85
      return this;
×
86
    }
87

88
    public Builder direction(EnumWrapper<GetHubsV2025R0QueryParamsDirectionField> direction) {
89
      this.direction = direction;
×
90
      return this;
×
91
    }
92

93
    public Builder marker(String marker) {
94
      this.marker = marker;
×
95
      return this;
×
96
    }
97

98
    public Builder limit(Long limit) {
99
      this.limit = limit;
×
100
      return this;
×
101
    }
102

103
    public GetHubsV2025R0QueryParams build() {
UNCOV
104
      return new GetHubsV2025R0QueryParams(this);
×
105
    }
106
  }
107
}
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