org.eu.vooo.commons.security.entity.XAccessLimit Maven / Gradle / Ivy
package org.eu.vooo.commons.security.entity;
import java.io.Serializable;
/**
* @author [email protected]
*/
public class XAccessLimit implements Serializable {
private String key;
private Integer second;
private Integer count;
private Integer maxCount;
private Long timestamp;
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public Integer getSecond() {
return second;
}
public void setSecond(Integer second) {
this.second = second;
}
public Integer getCount() {
return count;
}
public void setCount(Integer count) {
this.count = count;
}
public Integer getMaxCount() {
return maxCount;
}
public void setMaxCount(Integer maxCount) {
this.maxCount = maxCount;
}
public Long getTimestamp() {
return timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy