![JAR search and dependency download from the Maven repository](/logo.png)
io.imunity.vaadin.auth.server.RegularInvalidRequestsCounter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unity-server-vaadin-authentication Show documentation
Show all versions of unity-server-vaadin-authentication Show documentation
Vaadin login view and components
/*
* Copyright (c) 2013 ICM Uniwersytet Warszawski All rights reserved.
* See LICENCE.txt file for licensing information.
*/
package io.imunity.vaadin.auth.server;
import pl.edu.icm.unity.base.utils.Log;
import pl.edu.icm.unity.engine.api.authn.UnsuccessfulAccessCounterBase;
class RegularInvalidRequestsCounter extends UnsuccessfulAccessCounterBase
{
public RegularInvalidRequestsCounter(int maxAttepts, long blockTime)
{
super(Log.getLogger(Log.U_SERVER_AUTHN, RegularInvalidRequestsCounter.class), maxAttepts, blockTime);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy