![JAR search and dependency download from the Maven repository](/logo.png)
org.openfact.components.utils.ComponentProviderLiteral Maven / Gradle / Ivy
package org.openfact.components.utils;
import org.openfact.keys.qualifiers.ComponentProviderType;
import javax.enterprise.util.AnnotationLiteral;
public class ComponentProviderLiteral extends AnnotationLiteral implements ComponentProviderType {
private final Class> providerType;
public ComponentProviderLiteral(Class> providerType) {
this.providerType = providerType;
}
@Override
public Class> providerType() {
return providerType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy