message.security.annotation.CurrentAccount Maven / Gradle / Ivy
package message.security.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 标识controller需要当前用户这个参数.
*
* @author sunhao([email protected])
* @version V1.0
* @createTime 2014-12-7 19:49
*/
@Target({ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface CurrentAccount {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy