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

square / keywhiz / 3633272927

pending completion
3633272927

push

github

GitHub
Adding support for hard-deleting secrets (#1163)

94 of 94 new or added lines in 6 files covered. (100.0%)

5177 of 6700 relevant lines covered (77.27%)

0.77 hits per line

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

0.0
/api/src/main/java/keywhiz/api/model/SecretDeletionMode.java
1
package keywhiz.api.model;
2

3
import com.google.common.collect.ImmutableList;
4
import java.util.List;
5

6
public final class SecretDeletionMode {
7
  private SecretDeletionMode() {}
8

9
  public static final String HARD = "hard";
10
  public static final String SOFT = "soft";
11

12
  private static final List<String> values = ImmutableList.of(HARD, SOFT);
×
13

14
  public static List<String> values() {
15
    return values;
×
16
  }
17
}
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