Interface ISignUpAssistantPlugin
-
public interface ISignUpAssistantPlugin
ADVANCED USERS ONLYAllows to plug custom code in the SignUp Assistant process flow. This is useful if you want to implement advanced functionalities, such as processing the custom validation and application logic, response email customizations etc...
You can attach a plugin either BEFORE or AFTER the process, depending on the type of operation you need to execute.
- See Also:
SignUpAssistantComponent
,SignUpConfiguration
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
execute(User user, ISFSObject params, SignUpConfiguration config)
Handles the execution of the plugin logic
-
-
-
Method Detail
-
execute
void execute(User user, ISFSObject params, SignUpConfiguration config) throws SignUpValidationException
Handles the execution of the plugin logic- Parameters:
user
- the clientparams
- the client's parametersconfig
- the current SignUp Assistant configuration- Throws:
SignUpValidationException
- firing an exception will result in stopping the process
-
-