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

net.lamberto.configuration.ConfigurationOption Maven / Gradle / Ivy

package net.lamberto.configuration;

import static java.lang.annotation.RetentionPolicy.RUNTIME;

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

import com.google.inject.BindingAnnotation;

@Retention(RUNTIME)
@Target({ ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD })
@BindingAnnotation
public @interface ConfigurationOption {
	Class> value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy