aboutsummaryrefslogtreecommitdiff
path: root/src/main/ui/tui/Screen.java
blob: 413fe8a2377041b9c67e5d5e91fdcd541ac786c2 (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.tui;

/**
 * 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
}