public interface UserFederationProviderResource
| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.core.Response |
addMapper(UserFederationMapperRepresentation mapper) |
UserFederationMapperRepresentation |
getMapperById(String id) |
List<UserFederationMapperRepresentation> |
getMappers() |
Map<String,UserFederationMapperTypeRepresentation> |
getMapperTypes() |
void |
remove() |
void |
removeMapper(String id) |
UserFederationSyncResultRepresentation |
syncMapperData(String mapperId,
String direction) |
UserFederationSyncResultRepresentation |
syncUsers(String action) |
UserFederationProviderRepresentation |
toRepresentation() |
void |
update(UserFederationProviderRepresentation rep) |
void |
updateMapper(String id,
UserFederationMapperRepresentation rep) |
@PUT @Consumes(value="application/json") void update(UserFederationProviderRepresentation rep)
@GET @Produces(value="application/json") UserFederationProviderRepresentation toRepresentation()
@DELETE void remove()
@POST @Path(value="sync") @Produces(value="application/json") UserFederationSyncResultRepresentation syncUsers(@QueryParam(value="action") String action)
@GET @Path(value="mapper-types") @Produces(value="application/json") Map<String,UserFederationMapperTypeRepresentation> getMapperTypes()
@GET @Path(value="mappers") @Produces(value="application/json") List<UserFederationMapperRepresentation> getMappers()
@POST @Path(value="mappers") @Consumes(value="application/json") javax.ws.rs.core.Response addMapper(UserFederationMapperRepresentation mapper)
@GET
@Path(value="mappers/{id}")
@Produces(value="application/json")
UserFederationMapperRepresentation getMapperById(@PathParam(value="id")
String id)
@PUT
@Path(value="mappers/{id}")
@Consumes(value="application/json")
void updateMapper(@PathParam(value="id")
String id,
UserFederationMapperRepresentation rep)
@DELETE
@Path(value="mappers/{id}")
void removeMapper(@PathParam(value="id")
String id)
@POST
@Path(value="mappers/{id}/sync")
@Produces(value="application/json")
UserFederationSyncResultRepresentation syncMapperData(@PathParam(value="id")
String mapperId,
@QueryParam(value="direction")
String direction)
Copyright © 2016 JBoss by Red Hat. All rights reserved.