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

org.openfact.components.utils.RsaKeyProviderLiteral Maven / Gradle / Ivy

package org.openfact.components.utils;

import org.openfact.keys.qualifiers.RsaKeyProviderType;
import org.openfact.keys.qualifiers.RsaKeyType;

import javax.enterprise.util.AnnotationLiteral;

public class RsaKeyProviderLiteral extends AnnotationLiteral implements RsaKeyProviderType {

    private final RsaKeyType type;

    public RsaKeyProviderLiteral(RsaKeyType type) {
        this.type = type;
    }

    @Override
    public RsaKeyType type() {
        return type;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy