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

box / box-java-sdk-gen / #541

05 Sep 2025 02:31PM UTC coverage: 7.451% (-29.2%) from 36.66%
#541

push

other

web-flow
chore: release version 0.8.1 (#437)

1 of 1 new or added line in 1 file covered. (100.0%)

14652 existing lines in 1191 files now uncovered.

3737 of 50151 relevant lines covered (7.45%)

0.07 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/signrequests/GetSignRequestsQueryParams.java
1
package com.box.sdkgen.managers.groups;
2

3
import java.util.List;
4

5
public class GetGroupsQueryParams {
6

7
  public String filterTerm;
8

9
  public List<String> fields;
10

11
  public Long limit;
12

13
  public Long offset;
14

UNCOV
15
  public GetGroupsQueryParams() {}
×
16

17
  protected GetGroupsQueryParams(Builder builder) {
×
18
    this.filterTerm = builder.filterTerm;
×
19
    this.fields = builder.fields;
×
20
    this.limit = builder.limit;
×
21
    this.offset = builder.offset;
×
22
  }
×
23

24
  public String getFilterTerm() {
UNCOV
25
    return filterTerm;
×
26
  }
27

28
  public List<String> getFields() {
UNCOV
29
    return fields;
×
30
  }
31

32
  public Long getLimit() {
UNCOV
33
    return limit;
×
34
  }
35

36
  public Long getOffset() {
UNCOV
37
    return offset;
×
38
  }
39

40
  public static class Builder {
×
41

42
    protected String filterTerm;
43

44
    protected List<String> fields;
45

46
    protected Long limit;
47

48
    protected Long offset;
49

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

55
    public Builder fields(List<String> fields) {
56
      this.fields = fields;
×
57
      return this;
×
58
    }
59

60
    public Builder limit(Long limit) {
61
      this.limit = limit;
×
62
      return this;
×
63
    }
64

65
    public Builder offset(Long offset) {
66
      this.offset = offset;
×
67
      return this;
×
68
    }
69

70
    public GetGroupsQueryParams build() {
71
      return new GetGroupsQueryParams(this);
×
72
    }
73
  }
74
}
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