001package com.ericlam.mc.eldgui.controller;
002
003import java.lang.annotation.ElementType;
004import java.lang.annotation.Retention;
005import java.lang.annotation.RetentionPolicy;
006import java.lang.annotation.Target;
007
008@Target(ElementType.PARAMETER)
009@Retention(RetentionPolicy.RUNTIME)
010public @interface FromSession {
011
012    /**
013     * 從 UISession 提取該 key 的數值
014     * @return 指定 key
015     */
016    String value();
017
018    /**
019     * 是否使用 pollAttribute 方法
020     * @return 是否使用
021     */
022    boolean poll() default false;
023
024}