aboutsummaryrefslogtreecommitdiff
path: root/src/main/ui/Screen.java
blob: 31370e1ec57b8e8e7675b8a8380df0333b1c0734 (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
29
30
31
package ui;

/**
 * The screen type
 */
public enum Screen {
    /**
     * Main menu (mgmt, issue, template, crl, show, revoke, log)
     */
    MAIN,

    /**
     * The CA management menu (show, csr, install)
     */
    MGMT,

    /**
     * The issue menu (show, set, commit)
     */
    ISSUE,

    /**
     * The templates menu (show, add, enable, disable, remove)
     */
    TEMPLATES,

    /**
     * The template edit menu (show, set, commit)
     */
    TEMPLATE_SET
}