package art.servers.transactionsserver.configuration;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
public class ConfigurationLoginBlockedManager
|
{
|
@JsonProperty("Activated")
|
public boolean activated = false;
|
|
@JsonProperty("Minutes unlock user")
|
public int MINUTES_UNLOCK_USER = 15;
|
|
@JsonProperty("Minutes unlock address")
|
public int MINUTES_UNLOCK_ADDRESS = 720;
|
|
@JsonProperty("MAXIMUM user login attemps")
|
public int MAXIMUM_USER_LOGIN_ATTEMPS = 3;
|
|
@JsonProperty("MAXIMUM address login attemps")
|
public int MAXIMUM_ADDRESS_LOGIN_ATTEMPS = 20;
|
|
@JsonProperty("Notification mails")
|
public String[] lnotificationMail;
|
}
|