@Produces(value="application/json")
public interface IdentityRestService
Modifier and Type | Method and Description |
---|---|
javax.ws.rs.core.Response |
checkPassword(PasswordDto password) |
GroupInfoDto |
getGroupInfo(String userId) |
javax.ws.rs.core.Response |
getPasswordPolicy() |
AuthenticationResult |
verifyUser(BasicUserCredentialsDto credentialsDto) |
static final String PATH
@GET @Path(value="/groups") @Produces(value="application/json") GroupInfoDto getGroupInfo(@QueryParam(value="userId") String userId)
@POST @Path(value="/verify") @Produces(value="application/json") @Consumes(value="application/json") AuthenticationResult verifyUser(BasicUserCredentialsDto credentialsDto)
@GET @Path(value="/password-policy") @Produces(value="application/json") javax.ws.rs.core.Response getPasswordPolicy()
@POST @Path(value="/password-policy") @Consumes(value="application/json") @Produces(value="application/json") javax.ws.rs.core.Response checkPassword(PasswordDto password)
Copyright © 2022. All rights reserved.