Class AuthenticationService


  • @Produces({"application/vnd.xima.fc.api.rest.public+json; version=1.0; charset=utf-8","application/json; charset=utf-8"})
    @Path("/auth")
    public class AuthenticationService
    extends Object
    Service that provides authentication endpoints
    Since:
    8.2.0
    Author:
    XIMA MEDIA GmbH
    • Constructor Detail

      • AuthenticationService

        public AuthenticationService()
    • Method Detail

      • authenticate

        @POST
        @Path("/authenticate/{clientName}")
        @Produces({"application/vnd.xima.fc.api.rest.public+json; version=1.0; charset=utf-8","application/json; charset=utf-8"})
        public javax.ws.rs.core.Response authenticate​(@PathParam("clientName") @NotNull
                                                      @NotNull String clientName,
                                                      @NotNull @Valid
                                                      @NotNull @Valid UsernamePasswordAuthenticationRequest authRequest)