Class 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) $
    • 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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • AuthenticationResource

        public AuthenticationResource()
    • 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