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

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