State.java [src/csip/annotations] Revision: 3af6c48ce47c53e489a005b55aebf48251e622b9  Date: Tue Apr 25 21:50:59 MDT 2017
/*
 * $Id$
 *
 * This file is part of the Cloud Services Integration Platform (CSIP),
 * a Model-as-a-Service framework, API and application suite.
 *
 * 2012-2017, Olaf David and others, OMSLab, Colorado State University.
 *
 * OMSLab licenses this file to you under the MIT license.
 * See the LICENSE file in the project root for more information.
 */
package csip.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Service state definition.
 *
 * @author od
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
public @interface State {

    public static String NEW = "New";
    public static String DRAFT = "Draft";
    public static String UNTESTED = "Untested";
    public static String DEV = "Dev";
    public static String TESTED = "Tested";
    public static String BROKEN = "Broken";
    public static String RELEASED = "Released";
    public static String DEPRECATED = "Deprecated";
    public static String EXPIRED = "Expired";


    String value();
}