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

io.quarkus.runtime.annotations.RelaxedValidation Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package io.quarkus.runtime.annotations;

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

/**
 * Indicates that a given recorded parameter should have relaxed validation.
 *
 * Normally if a field cannot be serialized to bytecode an exception will be thrown,
 * if this annotation is present the field is simply ignored.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.PARAMETER)
public @interface RelaxedValidation {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy