Interface IPAddressIntelligenceService
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface IPAddressIntelligenceServiceThis isIPAddressIntelligenceService.- Since:
- 6.0.0
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static IPAddressIntelligenceServiceallowed()NoOp ip address intelligence service.static IPAddressIntelligenceServicebanned()Banned ip address intelligence service.IPAddressIntelligenceResponseexamine(org.springframework.webflow.execution.RequestContext context, java.lang.String clientIpAddress)Examine ip address and produce an intelligence response.
-
-
-
Method Detail
-
examine
IPAddressIntelligenceResponse examine(org.springframework.webflow.execution.RequestContext context, java.lang.String clientIpAddress)
Examine ip address and produce an intelligence response.- Parameters:
context- the contextclientIpAddress- the client ip address- Returns:
- the ip address intelligence response
-
allowed
static IPAddressIntelligenceService allowed()
NoOp ip address intelligence service.- Returns:
- the ip address intelligence service
-
banned
static IPAddressIntelligenceService banned()
Banned ip address intelligence service.- Returns:
- the ip address intelligence service
-
-