com.github.datalking.annotation.web.SessionAttribute Maven / Gradle / Ivy
package com.github.datalking.annotation.web;
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;
/**
* @author yaoo on 4/28/18
*/
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface SessionAttribute {
String value() default "";
boolean required() default true;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy