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

org.swiftboot.service.config.CaptchaConfigBean Maven / Gradle / Ivy

There is a newer version: 2.4.7
Show newest version
package org.swiftboot.service.config;

/**
 * swiftboot.service.captcha
 *
 * @author swiftech
 */
public class CaptchaConfigBean {

    /**
     * Captcha 超时时间,单位是秒,默认为 5 分钟
     */
    private int expiresIn = 5 * 60;

    public int getExpiresIn() {
        return expiresIn;
    }

    public void setExpiresIn(int expiresIn) {
        this.expiresIn = expiresIn;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy