public interface CustomActivationProvider
| Modifier and Type | Method and Description |
|---|---|
String |
lookupUserIdForAttributes(Map<String,String> identityAttributes)
This method is responsible for looking user ID up based on a provided set of identity attributes.
|
Map<String,Object> |
processCustomActivationAttributes(Map<String,Object> customAttributes,
String activationId,
String userId,
ActivationType activationType)
Process custom attributes, in any way that is suitable for the purpose of your application.
|
boolean |
shouldAutoCommitActivation(Map<String,String> identityAttributes,
Map<String,Object> customAttributes,
String activationId,
String userId)
Variable that specifies if the activation should be automatically committed based on provided attributes.
|
String lookupUserIdForAttributes(Map<String,String> identityAttributes)
identityAttributes - Attributes that uniquely identify user with given ID.Map<String,Object> processCustomActivationAttributes(Map<String,Object> customAttributes, String activationId, String userId, ActivationType activationType)
customAttributes - Custom attributes (not related to identity) to be processed.activationId - Activation ID of created activation.userId - User ID of user who created the activation.activationType - Activation type (CODE or CUSTOM).boolean shouldAutoCommitActivation(Map<String,String> identityAttributes, Map<String,Object> customAttributes, String activationId, String userId)
identityAttributes - Identity related attributes.customAttributes - Custom attributes, not related to identity.activationId - Activation ID of created activation.userId - User ID of user who created the activation.Copyright © 2017–2019 Wultra s.r.o.. All rights reserved.