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

hazendaz / displaytag / 1753

12 Feb 2026 03:17AM UTC coverage: 77.321% (-0.01%) from 77.334%
1753

push

github

web-flow
Merge pull request #1102 from hazendaz/renovate/javax-support-logback-monorepo

Update dependency ch.qos.logback:logback-classic to v1.5.29 (javax-support)

1438 of 2003 branches covered (71.79%)

Branch coverage included in aggregate %.

4034 of 5074 relevant lines covered (79.5%)

0.8 hits per line

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

90.0
/displaytag/src/main/java/org/displaytag/exception/SeverityEnum.java
1
/*
2
 * SPDX-License-Identifier: MIT
3
 * See LICENSE file for details.
4
 *
5
 * Copyright 2002-2026 Fabrizio Giustina, the Displaytag team
6
 */
7
package org.displaytag.exception;
8

9
/**
10
 * Enumeration for logging severities.
11
 */
12
public enum SeverityEnum {
1✔
13

14
    /** The fatal. */
15
    FATAL("fatal"),
1✔
16

17
    /** The error. */
18
    ERROR("error"),
1✔
19

20
    /** The warn. */
21
    WARN("warn"),
1✔
22

23
    /** The info. */
24
    INFO("info"),
1✔
25

26
    /** The debug. */
27
    DEBUG("debug");
1✔
28

29
    /**
30
     * Serial ID.
31
     */
32
    private static final long serialVersionUID = 899149338534L;
33

34
    /** The severity. */
35
    private String severity;
36

37
    /**
38
     * private constructor. Use only constants
39
     *
40
     * @param severity
41
     *            Severity name as String
42
     */
43
    SeverityEnum(final String severity) {
1✔
44
        this.severity = severity;
1✔
45
    }
1✔
46

47
    /**
48
     * Gets the severity.
49
     *
50
     * @return the severity
51
     */
52
    public String getSeverity() {
53
        return this.severity;
×
54
    }
55

56
}
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