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

box / box-java-sdk / #6375

18 Mar 2026 03:19PM UTC coverage: 34.836% (-0.2%) from 35.083%
#6375

push

github

web-flow
chore: release version 10.6.0 (#1739)

Co-authored-by: mwwoda <84077698+mwwoda@users.noreply.github.com>

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

133 existing lines in 18 files now uncovered.

18719 of 53735 relevant lines covered (34.84%)

0.35 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/classifications/CreateClassificationTemplateHeaders.java
1
package com.box.sdkgen.managers.classifications;
2

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

5
import java.util.Map;
6

7
public class CreateClassificationTemplateHeaders {
8

9
  /** Extra headers that will be included in the HTTP request. */
10
  public Map<String, String> extraHeaders;
11

UNCOV
12
  public CreateClassificationTemplateHeaders() {
×
UNCOV
13
    this.extraHeaders = mapOf();
×
UNCOV
14
  }
×
15

16
  protected CreateClassificationTemplateHeaders(Builder builder) {
×
17
    this.extraHeaders = builder.extraHeaders;
×
18
  }
×
19

20
  public Map<String, String> getExtraHeaders() {
UNCOV
21
    return extraHeaders;
×
22
  }
23

24
  public static class Builder {
25

26
    protected Map<String, String> extraHeaders;
27

28
    public Builder() {}
×
29

30
    public Builder extraHeaders(Map<String, String> extraHeaders) {
31
      this.extraHeaders = extraHeaders;
×
32
      return this;
×
33
    }
34

35
    public CreateClassificationTemplateHeaders build() {
36
      if (this.extraHeaders == null) {
×
37
        this.extraHeaders = mapOf();
×
38
      }
39
      return new CreateClassificationTemplateHeaders(this);
×
40
    }
41
  }
42
}
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