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

box / box-java-sdk / #6045

31 Dec 2025 02:32PM UTC coverage: 35.12% (-0.5%) from 35.647%
#6045

push

github

web-flow
test: Remove integration mappings tests (box/box-codegen#912) (#1671)

18717 of 53294 relevant lines covered (35.12%)

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/integrationmappings/GetSlackIntegrationMappingHeaders.java
1
package com.box.sdkgen.managers.integrationmappings;
2

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

5
import java.util.Map;
6

7
public class GetSlackIntegrationMappingHeaders {
8

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

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

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

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

24
  public static class Builder {
25

26
    protected Map<String, String> extraHeaders;
27

28
    public Builder() {
×
29
      this.extraHeaders = mapOf();
×
30
    }
×
31

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

37
    public GetSlackIntegrationMappingHeaders build() {
38
      return new GetSlackIntegrationMappingHeaders(this);
×
39
    }
40
  }
41
}
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