Package lumis.portal.authentication
Class AuthenticationResource
- java.lang.Object
-
- lumis.portal.authentication.AuthenticationResource
-
@Path("/lumis/authentication") public class AuthenticationResource extends java.lang.Object
Authentication endpoints.- Since:
- 16.1.0
- Version:
- $Revision: 26156 $ $Date: 2024-01-13 10:26:46 -0300 (Sat, 13 Jan 2024) $
-
-
Constructor Summary
Constructors Constructor Description AuthenticationResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
sendMFATokenEmail(javax.ws.rs.container.AsyncResponse asyncResponse, @NotEmpty java.lang.String userLogin)
Sends an email with a token to be used for authentication.
-
-
-
Method Detail
-
sendMFATokenEmail
@Path("/sendMFATokenEmail/{userLogin}") @POST public void sendMFATokenEmail(@Suspended javax.ws.rs.container.AsyncResponse asyncResponse, @NotEmpty @PathParam("userLogin") @NotEmpty java.lang.String userLogin) throws PortalException
Sends an email with a token to be used for authentication.- Parameters:
userLogin
- the user login.- Throws:
PortalException
- Since:
- 16.1.0
-
-