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

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

5
import java.util.Map;
6

7
public class FindFolderForSharedLinkHeaders {
8

9
  public String ifNoneMatch;
10

11
  public final String boxapi;
12

13
  public Map<String, String> extraHeaders;
14

UNCOV
15
  public FindFolderForSharedLinkHeaders(String boxapi) {
×
UNCOV
16
    this.boxapi = boxapi;
×
UNCOV
17
    this.extraHeaders = mapOf();
×
UNCOV
18
  }
×
19

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

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

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

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

38
  public static class Builder {
39

40
    protected String ifNoneMatch;
41

42
    protected final String boxapi;
43

44
    protected Map<String, String> extraHeaders;
45

46
    public Builder(String boxapi) {
×
47
      this.boxapi = boxapi;
×
48
      this.extraHeaders = mapOf();
×
49
    }
×
50

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

56
    public Builder extraHeaders(Map<String, String> extraHeaders) {
57
      this.extraHeaders = extraHeaders;
×
58
      return this;
×
59
    }
60

61
    public FindFolderForSharedLinkHeaders build() {
62
      return new FindFolderForSharedLinkHeaders(this);
×
63
    }
64
  }
65
}
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