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

com.yuweix.kuafu.session.RepeatKey Maven / Gradle / Ivy

The newest version!
package com.yuweix.kuafu.session;



/**
 * 避免同一账号多处登录。
 * 可将判重条件用RepeatKey包装,然后存入session即可
 * @author yuwei
 */
public class RepeatKey {
	private String value;

	public RepeatKey(String value) {
		this.value = value;
	}
	public String getValue() {
		return value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy