Package com.rale4j.sb.security
Class RbacRateLimiter
java.lang.Object
com.rale4j.sb.security.RbacRateLimiter
- All Implemented Interfaces:
RateLimitStrategy
Rate-limiting strategy based on Role-Based Access Control (RBAC).
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanallowRequest(String key, int limit, int duration) Allows or denies a request based on the rate limit.
-
Constructor Details
-
RbacRateLimiter
public RbacRateLimiter()
-
-
Method Details
-
allowRequest
Allows or denies a request based on the rate limit.- Specified by:
allowRequestin interfaceRateLimitStrategy- Parameters:
key- the key to identify the rate limit bucketlimit- the maximum number of requests allowedduration- the duration in seconds for the rate limit- Returns:
- true if the request is allowed, false otherwise
-