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

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

5
import java.util.Map;
6

7
public class GetFolderByIdHeaders {
8

9
  public String ifNoneMatch;
10

11
  public String boxapi;
12

13
  public Map<String, String> extraHeaders;
14

UNCOV
15
  public GetFolderByIdHeaders() {
×
UNCOV
16
    this.extraHeaders = mapOf();
×
UNCOV
17
  }
×
18

19
  protected GetFolderByIdHeaders(Builder builder) {
×
20
    this.ifNoneMatch = builder.ifNoneMatch;
×
21
    this.boxapi = builder.boxapi;
×
22
    this.extraHeaders = builder.extraHeaders;
×
23
  }
×
24

25
  public String getIfNoneMatch() {
UNCOV
26
    return ifNoneMatch;
×
27
  }
28

29
  public String getBoxapi() {
UNCOV
30
    return boxapi;
×
31
  }
32

33
  public Map<String, String> getExtraHeaders() {
UNCOV
34
    return extraHeaders;
×
35
  }
36

37
  public static class Builder {
38

39
    protected String ifNoneMatch;
40

41
    protected String boxapi;
42

43
    protected Map<String, String> extraHeaders;
44

45
    public Builder() {
×
46
      this.extraHeaders = mapOf();
×
47
    }
×
48

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

54
    public Builder boxapi(String boxapi) {
55
      this.boxapi = boxapi;
×
56
      return this;
×
57
    }
58

59
    public Builder extraHeaders(Map<String, String> extraHeaders) {
60
      this.extraHeaders = extraHeaders;
×
61
      return this;
×
62
    }
63

64
    public GetFolderByIdHeaders build() {
65
      return new GetFolderByIdHeaders(this);
×
66
    }
67
  }
68
}
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