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

box / box-java-sdk / #6048

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

push

github

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

18719 of 53297 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/schemas/integrationmappings/IntegrationMappings.java
1
package com.box.sdkgen.schemas.integrationmappings;
2

3
import com.box.sdkgen.internal.Nullable;
4
import com.box.sdkgen.internal.NullableFieldTracker;
5
import com.box.sdkgen.internal.SerializableObject;
6
import com.box.sdkgen.schemas.integrationmapping.IntegrationMapping;
7
import com.fasterxml.jackson.annotation.JsonFilter;
8
import com.fasterxml.jackson.annotation.JsonProperty;
9
import java.util.List;
10
import java.util.Objects;
11

12
/** A list of integration mapping objects. */
13
@JsonFilter("nullablePropertyFilter")
14
public class IntegrationMappings extends SerializableObject {
15

16
  /**
17
   * The limit that was used for these entries. This will be the same as the `limit` query parameter
18
   * unless that value exceeded the maximum value allowed. The maximum value varies by API.
19
   */
20
  protected Long limit;
21

22
  /** The marker for the start of the next page of results. */
23
  @JsonProperty("next_marker")
24
  @Nullable
25
  protected String nextMarker;
26

27
  /** A list of integration mappings. */
28
  protected List<IntegrationMapping> entries;
29

30
  public IntegrationMappings() {
31
    super();
×
32
  }
×
33

34
  protected IntegrationMappings(Builder builder) {
35
    super();
×
36
    this.limit = builder.limit;
×
37
    this.nextMarker = builder.nextMarker;
×
38
    this.entries = builder.entries;
×
39
    markNullableFieldsAsSet(builder.getExplicitlySetNullableFields());
×
40
  }
×
41

42
  public Long getLimit() {
43
    return limit;
×
44
  }
45

46
  public String getNextMarker() {
47
    return nextMarker;
×
48
  }
49

50
  public List<IntegrationMapping> getEntries() {
51
    return entries;
×
52
  }
53

54
  @Override
55
  public boolean equals(Object o) {
56
    if (this == o) {
×
57
      return true;
×
58
    }
59
    if (o == null || getClass() != o.getClass()) {
×
60
      return false;
×
61
    }
62
    IntegrationMappings casted = (IntegrationMappings) o;
×
63
    return Objects.equals(limit, casted.limit)
×
64
        && Objects.equals(nextMarker, casted.nextMarker)
×
65
        && Objects.equals(entries, casted.entries);
×
66
  }
67

68
  @Override
69
  public int hashCode() {
70
    return Objects.hash(limit, nextMarker, entries);
×
71
  }
72

73
  @Override
74
  public String toString() {
75
    return "IntegrationMappings{"
×
76
        + "limit='"
77
        + limit
78
        + '\''
79
        + ", "
80
        + "nextMarker='"
81
        + nextMarker
82
        + '\''
83
        + ", "
84
        + "entries='"
85
        + entries
86
        + '\''
87
        + "}";
88
  }
89

90
  public static class Builder extends NullableFieldTracker {
×
91

92
    protected Long limit;
93

94
    protected String nextMarker;
95

96
    protected List<IntegrationMapping> entries;
97

98
    public Builder limit(Long limit) {
99
      this.limit = limit;
×
100
      return this;
×
101
    }
102

103
    public Builder nextMarker(String nextMarker) {
104
      this.nextMarker = nextMarker;
×
105
      this.markNullableFieldAsSet("next_marker");
×
106
      return this;
×
107
    }
108

109
    public Builder entries(List<IntegrationMapping> entries) {
110
      this.entries = entries;
×
111
      return this;
×
112
    }
113

114
    public IntegrationMappings build() {
115
      return new IntegrationMappings(this);
×
116
    }
117
  }
118
}
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