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

com.yomahub.liteflow.context.ContextBean Maven / Gradle / Ivy

The newest version!
package com.yomahub.liteflow.context;

import com.yomahub.liteflow.annotation.LFAliasFor;

import java.lang.annotation.*;

/**
 * 用于标注上下文bean的别名,以便在脚本或者组件中通过别名来获取上下文对象
 *
 * @since 2.9.7
 * @author Tingliang Wang
 */
@Target({ ElementType.TYPE })
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface ContextBean {

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy