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

com.github.database.rider.cdi.api.RiderPUAnnotation Maven / Gradle / Ivy

There is a newer version: 1.44.0
Show newest version
package com.github.database.rider.cdi.api;

import javax.enterprise.util.AnnotationLiteral;
import javax.inject.Named;

public class RiderPUAnnotation extends AnnotationLiteral implements RiderPU {

    private final String value;

    public RiderPUAnnotation(final String value) {
        this.value = value;
    }

    public String value() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy