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

DataBiosphere / consent / #6225

28 Jul 2025 12:14PM UTC coverage: 81.088% (+0.4%) from 80.694%
#6225

push

web-flow
DT-2026: Bring feature branch into develop (#2621)

Co-authored-by: Elliot Otchet <otchet@broadinstitute.org>
Co-authored-by: Rachel Johanek <55256690+rjohanek@users.noreply.github.com>
Co-authored-by: rjohanek <rjohanek@broadinstitute.org>
Co-authored-by: Matt Bemis <MatthewBemis@users.noreply.github.com>
Co-authored-by: otchet-broad <111771148+otchet-broad@users.noreply.github.com>

397 of 437 new or added lines in 34 files covered. (90.85%)

10775 of 13288 relevant lines covered (81.09%)

0.81 hits per line

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

83.33
/src/main/java/org/broadinstitute/consent/http/models/AutomationRuleToggleResponse.java
1
package org.broadinstitute.consent.http.models;
2

3
import com.fasterxml.jackson.annotation.JsonProperty;
4

5
public final class AutomationRuleToggleResponse {
6

7
  @JsonProperty
8
  private final int ruleId;
9

10
  @JsonProperty
11
  private final boolean isRuleEnabled;
12

13
  @JsonProperty
14
  private final long enabledTime;
15

16
  @JsonProperty
17
  private final String displayName;
18

19
  @JsonProperty
20
  private final String email;
21

22
  public AutomationRuleToggleResponse(int id, boolean enabled, long enabledTime, String displayName,
23
      String email) {
1✔
24
    this.ruleId = id;
1✔
25
    this.isRuleEnabled = enabled;
1✔
26
    this.enabledTime = enabledTime;
1✔
27
    this.displayName = displayName;
1✔
28
    this.email = email;
1✔
29
  }
1✔
30

31
  public int getRuleId() {
32
    return ruleId;
1✔
33
  }
34

35
  public boolean isRuleEnabled() {
36
    return isRuleEnabled;
1✔
37
  }
38

39
  public long getEnabledTime() {
40
    return enabledTime;
1✔
41
  }
42

43
  public String getDisplayName() {
NEW
44
    return displayName;
×
45
  }
46

47
  public String getEmail() {
NEW
48
    return email;
×
49
  }
50
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc