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

io.quarkus.hibernate.validator.runtime.jaxrs.JaxrsEndPointValidated Maven / Gradle / Ivy

package io.quarkus.hibernate.validator.runtime.jaxrs;

import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import javax.interceptor.InterceptorBinding;

/**
 * Marker class to indicate a JAX-RS end point should be validated.
 */
@Inherited
@InterceptorBinding
@Retention(value = RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE, ElementType.METHOD })
public @interface JaxrsEndPointValidated {

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy