Uses of Class
com.iizix.user.LoginResult
Packages that use LoginResult Package Description com.iizix.gyro com.iizix.license com.iizix.server.gyro com.iizix.server.user com.iizix.user Uses of LoginResult in com.iizix.gyro
Methods in com.iizix.gyro that return LoginResult Modifier and Type Method Description LoginResult
IUserAuthenticationUI. changePassword(IClientSessionGyro clientGyro, java.lang.String user, java.lang.String oldPassword, java.lang.String newPassword)
Changes the password for the user.Method parameters in com.iizix.gyro with type arguments of type LoginResult Modifier and Type Method Description void
IUserAuthenticationUI. performExternalLogin(IClientSessionGyro clientGyro, AuthenticationProvider provider, boolean rememberProvider, java.util.function.BiConsumer<LoginResult,UserInfoBase> callback)
Performs the login for any external login authentication provider.Uses of LoginResult in com.iizix.license
Methods in com.iizix.license with parameters of type LoginResult Modifier and Type Method Description void
ILicenseLogin. onLogin(LoginResult result)
Called when the login completes successfully or without errors.Method parameters in com.iizix.license with type arguments of type LoginResult Modifier and Type Method Description java.lang.String
IGenericLicenseSystem. login(java.lang.String email, java.lang.String password, java.lang.String newPassword, java.util.function.BiFunction<LoginResult,java.lang.String,java.lang.Void> callback)
Login user.Uses of LoginResult in com.iizix.server.gyro
Methods in com.iizix.server.gyro that return LoginResult Modifier and Type Method Description LoginResult
AppSessionGyro. changeExternallyAuthenticatedUser(AuthenticatedUser authUser)
Changes the authenticated user due an external authentication mechanism such as LinkedIn.Uses of LoginResult in com.iizix.server.user
Fields in com.iizix.server.user declared as LoginResult Modifier and Type Field Description LoginResult
UserAuthenticationInfo. result
The result of the user authentication.Uses of LoginResult in com.iizix.user
Methods in com.iizix.user that return LoginResult Modifier and Type Method Description LoginResult
UserException. getAuthenticationResult()
Gets the authentication result causing the exception.static LoginResult
LoginResult. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static LoginResult[]
LoginResult. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in com.iizix.user with parameters of type LoginResult Constructor Description UserException(UserIdentifier userIdentifier, LoginResult authenticationResult)
Creates a user exception with an empty detail message.