Package overit.geocall.util.verification
Class PermissionsHandler
java.lang.Object
overit.geocall.util.SupplierChain.Handler<String,Boolean>
overit.geocall.util.verification.PermissionsHandler
Implementation of
SupplierChain.Handler
meant to handle the verification request for the Permissions-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class overit.geocall.util.SupplierChain.Handler
getAll, hasNext, next, stream
-
Field Details
-
SEPARATOR
- See Also:
-
-
Constructor Details
-
PermissionsHandler
public PermissionsHandler()
-
-
Method Details
-
get
Description copied from class:SupplierChain.HandlerGet the value from this handler if it is able to handle the input parameter. Implementation note: the subclass should invoke the super implementation if it can not handle the request{@literal @}Override public O get(I input) { if (!canHandle(input)) return super.get(input); // handle the request }- Overrides:
getin classSupplierChain.Handler<String,Boolean> - Parameters:
request- the input parameter- Returns:
- the output value or null if the input can not be handled
-
purgePrefix
-