All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.taskurotta.service.console.Action Maven / Gradle / Ivy

package ru.taskurotta.service.console;

/**
 * List of console actions to use
 * User: dimadin
 * Date: 04.10.13 10:28
 */
public enum Action {

    LIST("list"), CARD("card"), CREATE("create"), COMPARE("compare"), BLOCK("block"), UNBLOCK("unblock"),
    DELETE("delete"), EDIT("edit"), UPDATE("update"), ACTIVATE("activate"), DEACTIVATE("deactivate"),
    GROUP("group"), RESTART("restart"), GROUP_RESTART("group_restart");

    private String value;

    Action(String value) {
        this.value = value;
    }

    public String getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy