com.palominolabs.config.ConfigInjectFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of config-inject Show documentation
Show all versions of config-inject Show documentation
Configuration system using Guice and config-magic
The newest version!
package com.palominolabs.config;
import com.google.inject.BindingAnnotation;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* Scopes the ConfigurationObjectFactory binding made in ConfigModule so we don't clobber anyone else's bindings.
*/
@BindingAnnotation
@Target({FIELD, PARAMETER, METHOD})
@Retention(RUNTIME)
public @interface ConfigInjectFactory {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy