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

io.kestra.core.models.annotations.PluginProperty Maven / Gradle / Ivy

There is a newer version: 0.19.11
Show newest version
package io.kestra.core.models.annotations;

import java.lang.annotation.*;

import static java.lang.annotation.RetentionPolicy.RUNTIME;

@Documented
@Inherited
@Retention(RUNTIME)
@Target({ElementType.FIELD, ElementType.METHOD})
public @interface PluginProperty {
    /**
     * @return whether the property is renderer
     */
    boolean dynamic() default false;

    /**
     * @return the Class for a map
     */
    Class additionalProperties() default Object.class;

    /**
     * @return whether the property is in beta
     */
    boolean beta() default false;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy