Package de.xima.fc.api.rest.services
Class AuthenticationService
- java.lang.Object
-
- de.xima.fc.api.rest.services.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 Summary
Constructors Constructor Description AuthenticationService()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.ws.rs.core.Response
authenticate(@NotNull String clientName, @NotNull @Valid UsernamePasswordAuthenticationRequest authRequest)
-
-
-
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)
-
-