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

box / box-java-sdk-gen / #14

17 Mar 2025 03:22PM UTC coverage: 35.216%. First build
#14

Pull #249

github

web-flow
Merge 2098f0933 into f9cf8df70
Pull Request #249: feat: Support upload with preflight check (box/box-codegen#676)

69 of 141 new or added lines in 6 files covered. (48.94%)

15237 of 43267 relevant lines covered (35.22%)

0.35 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

22.22
/src/main/java/com/box/sdkgen/managers/uploads/UploadWithPreflightCheckQueryParams.java
1
package com.box.sdkgen.managers.uploads;
2

3
import java.util.List;
4

5
public class UploadWithPreflightCheckQueryParams {
6

7
  public List<String> fields;
8

9
  public UploadWithPreflightCheckQueryParams() {}
1✔
10

11
  protected UploadWithPreflightCheckQueryParams(
NEW
12
      UploadWithPreflightCheckQueryParamsBuilder builder) {
×
NEW
13
    this.fields = builder.fields;
×
NEW
14
  }
×
15

16
  public List<String> getFields() {
17
    return fields;
1✔
18
  }
19

NEW
20
  public static class UploadWithPreflightCheckQueryParamsBuilder {
×
21

22
    protected List<String> fields;
23

24
    public UploadWithPreflightCheckQueryParamsBuilder fields(List<String> fields) {
NEW
25
      this.fields = fields;
×
NEW
26
      return this;
×
27
    }
28

29
    public UploadWithPreflightCheckQueryParams build() {
NEW
30
      return new UploadWithPreflightCheckQueryParams(this);
×
31
    }
32
  }
33
}
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