-
Methods in io.getlime.security.powerauth.rest.api.spring.provider that throw PowerAuthActivationException
| Modifier and Type |
Method |
Description |
default void |
CustomActivationProvider.activationWasCommitted(Map<String,String> identityAttributes,
Map<String,Object> customAttributes,
String activationId,
String userId,
String appId,
ActivationType activationType,
Map<String,Object> context) |
Method is called when activation commit succeeds.
|
default void |
CustomActivationProvider.activationWasRemoved(String activationId,
String userId,
String appId) |
Method is called after activation was just removed using the standard removal endpoint.
|
default Integer |
CustomActivationProvider.getMaxFailedAttemptCount(Map<String,String> identityAttributes,
Map<String,Object> customAttributes,
String userId,
ActivationType activationType,
Map<String,Object> context) |
Get maximum failed attempt count for activations.
|
default Long |
CustomActivationProvider.getValidityPeriodDuringActivation(Map<String,String> identityAttributes,
Map<String,Object> customAttributes,
String userId,
ActivationType activationType,
Map<String,Object> context) |
Get length of the period of activation record validity during activation in milliseconds.
|
String |
CustomActivationProvider.lookupUserIdForAttributes(Map<String,String> identityAttributes,
Map<String,Object> context) |
This method is responsible for looking user ID up based on a provided set of identity attributes.
|
default Map<String,Object> |
CustomActivationProvider.processCustomActivationAttributes(Map<String,Object> customAttributes,
String activationId,
String userId,
String appId,
ActivationType activationType,
Map<String,Object> context) |
Process custom attributes, in any way that is suitable for the purpose of your application.
|
default boolean |
CustomActivationProvider.shouldAutoCommitActivation(Map<String,String> identityAttributes,
Map<String,Object> customAttributes,
String activationId,
String userId,
String appId,
ActivationType activationType,
Map<String,Object> context) |
Variable that specifies if the activation should be automatically committed based on provided attributes.
|
default Boolean |
CustomActivationProvider.shouldCreateRecoveryCodes(Map<String,String> identityAttributes,
Map<String,Object> customAttributes,
ActivationType activationType,
Map<String,Object> context) |
Method that indicates if recovery codes should be generated for a given activation or not.
|