java.lang.Object
ai.tutor.cab302exceptionalhandlers.builders.ControllerBuilder<AuthController>
ai.tutor.cab302exceptionalhandlers.builders.AuthControllerBuilder

public class AuthControllerBuilder extends ControllerBuilder<AuthController>
Builder for creating instances of AuthController.

This class constructs either a LoginController or a SignUpController based on the specified AuthType.

Usage Example:

 AuthController controller = controllerFactory.authController()
                                .type(AuthType.LOGIN) // or AuthType.SIGNUP
                                .build();
 
Author:
Justin.
See Also: