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

com.greenpepper.annotation.Status Maven / Gradle / Ivy

The newest version!
package com.greenpepper.annotation;

/**
 * 

Classes class.

* * @author jgi * @version $Id: $Id */ public enum Status { /** Constant SUCCESS = "gp-item-success" */ SUCCESS ("success"), /** Constant FAILLURE = "gp-item-failure" */ FAILLURE("failure"), /** Constant ERROR = "gp-item-error" */ ERROR("error"), /** Constant IGNORED = "gp-item-ignored" */ IGNORED("ignored"), /** Constant SKIPPED = "gp-item-skipped" */ SKIPPED("skipped"); private final String gpStatusTag; Status(String gpStatusTag) { this.gpStatusTag = gpStatusTag; } public String getGpStatusTag() { return gpStatusTag; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy