Package net.shibboleth.idp.authn.impl
Class StorageBackedAccountLockoutManager.UsernameIPLockoutKeyStrategy
- java.lang.Object
-
- net.shibboleth.idp.authn.impl.StorageBackedAccountLockoutManager.UsernameIPLockoutKeyStrategy
-
- All Implemented Interfaces:
Function<ProfileRequestContext,String>
- Enclosing class:
- StorageBackedAccountLockoutManager
public static class StorageBackedAccountLockoutManager.UsernameIPLockoutKeyStrategy extends Object implements Function<ProfileRequestContext,String>
A function to generate a key for lockout storage. This effectively defines the scope of the lockout; e.g. if the key depends on the supplied username and client IP address, the lockout will affect only attempts for that username from that client IP.
-
-
Field Summary
Fields Modifier and Type Field Description private NonnullSupplier<javax.servlet.http.HttpServletRequest>httpRequestSupplierSupplier for the Servlet request to pull client ip from.
-
Constructor Summary
Constructors Constructor Description UsernameIPLockoutKeyStrategy()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringapply(ProfileRequestContext profileRequestContext)private javax.servlet.http.HttpServletRequestgetHttpServletRequest()Get the current HTTP request if available.voidsetHttpServletRequestSupplier(NonnullSupplier<javax.servlet.http.HttpServletRequest> requestSupplier)Set the Supplier for the servlet request to read from.
-
-
-
Field Detail
-
httpRequestSupplier
@Nullable private NonnullSupplier<javax.servlet.http.HttpServletRequest> httpRequestSupplier
Supplier for the Servlet request to pull client ip from.
-
-
Method Detail
-
setHttpServletRequestSupplier
public void setHttpServletRequestSupplier(@Nonnull NonnullSupplier<javax.servlet.http.HttpServletRequest> requestSupplier)Set the Supplier for the servlet request to read from.- Parameters:
requestSupplier- servlet request Supplier
-
getHttpServletRequest
@Nullable private javax.servlet.http.HttpServletRequest getHttpServletRequest()
Get the current HTTP request if available.- Returns:
- current HTTP request
-
apply
@Nullable public String apply(@Nullable ProfileRequestContext profileRequestContext)
- Specified by:
applyin interfaceFunction<ProfileRequestContext,String>
-
-