summaryrefslogtreecommitdiffstats
path: root/bcprov/src/main/java/org/bouncycastle/crypto/tls/AlertLevel.java
blob: cd468305b2d6fb1cfb3744e0ad6be7a4f6202f76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package org.bouncycastle.crypto.tls;

/**
 * RFC 5246 7.2
 */
public class AlertLevel
{
    public static final short warning = 1;
    public static final short fatal = 2;

    public static String getName(short alertDescription)
    {
        switch (alertDescription)
        {
        case warning:
            return "warning";
        case fatal:
            return "fatal";
        default:
            return "UNKNOWN";
        }
    }

    public static String getText(short alertDescription)
    {
        return getName(alertDescription) + "(" + alertDescription + ")";
    }
}