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

com.mageddo.togglefirst.FeatureDefaults Maven / Gradle / Ivy

There is a newer version: 1.4.9
Show newest version
package com.mageddo.togglefirst;

import java.lang.annotation.*;

/**
 * Store default values for the feature, you can annotate a EnumBasedFeature for example
 *
 * @see EnumFeatureMetadataProvider
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface FeatureDefaults {
	Status status() default Status.INACTIVE;
	String value() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy