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

com.yomahub.liteflow.script.annotation.ScriptBean Maven / Gradle / Ivy

The newest version!
package com.yomahub.liteflow.script.annotation;

import com.yomahub.liteflow.annotation.LFAliasFor;

import java.lang.annotation.*;

/**
 * 用于标注在Script中可使用的java bean
 *
 * @author Bryan.Zhang
 * @since 2.9.0
 */
@Target({ ElementType.TYPE })
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface ScriptBean {

	@LFAliasFor("name")
	String value() default "";

	@LFAliasFor("value")
	String name() default "";

	String[] includeMethodName() default {};

	String[] excludeMethodName() default {};

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy