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

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

The 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 field or method should not be considered when attempting to construct a recorded object.
 * The annotation is meant to be used on a field or a getter method.
 *
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.METHOD, ElementType.FIELD })
public @interface IgnoreProperty {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy