Interface IdentityRestService

All Known Implementing Classes:
IdentityRestServiceImpl

@Produces("application/json") public interface IdentityRestService
  • Field Details

  • Method Details

    • getGroupInfo

      @GET @Path("/groups") @Produces("application/json") GroupInfoDto getGroupInfo(@QueryParam("userId") String userId)
    • verifyUser

      @POST @Path("/verify") @Produces("application/json") @Consumes("application/json") AuthenticationResult verifyUser(BasicUserCredentialsDto credentialsDto)
    • getPasswordPolicy

      @GET @Path("/password-policy") @Produces("application/json") jakarta.ws.rs.core.Response getPasswordPolicy()
    • checkPassword

      @POST @Path("/password-policy") @Consumes("application/json") @Produces("application/json") jakarta.ws.rs.core.Response checkPassword(PasswordPolicyRequestDto password)