Interface ISignUpAssistantPlugin
public interface ISignUpAssistantPlugin
ADVANCED USERS ONLY
Allows 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:
-
Method Summary
Modifier and TypeMethodDescriptionvoidexecute(User user, ISFSObject params, SignUpConfiguration config) Handles the execution of the plugin logic
-
Method Details
-
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
-