org.omnifaces.cdi.settings.ApplicationSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of omnisettings Show documentation
Show all versions of omnisettings Show documentation
Very basic provider for injectable settings
package org.omnifaces.cdi.settings;
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.ElementType.TYPE;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import javax.enterprise.util.Nonbinding;
import javax.inject.Qualifier;
@Qualifier
@Retention(RetentionPolicy.RUNTIME)
@Target({TYPE, METHOD, FIELD, PARAMETER})
public @interface ApplicationSettings {
@Nonbinding String prefixedBy() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy