public interface UserStorageProviderResource
| Modifier and Type | Method and Description |
|---|---|
void |
removeImportedUsers(String componentId)
Remove imported users
|
SynchronizationResultRepresentation |
syncMapperData(String componentId,
String mapperId,
String direction)
REST invocation for initiating sync for an ldap mapper.
|
SynchronizationResultRepresentation |
syncUsers(String componentId,
String action)
If the provider supports synchronization, this will invoke it.
|
void |
unlink(String componentId)
Unlink imported users from a storage provider
|
@POST
@Path(value="{componentId}/sync")
@Produces(value="application/json")
SynchronizationResultRepresentation syncUsers(@PathParam(value="componentId")
String componentId,
@QueryParam(value="action")
String action)
componentId - action - @POST
@Path(value="{componentId}/remove-imported-users")
@Produces(value="application/json")
void removeImportedUsers(@PathParam(value="componentId")
String componentId)
componentId - @POST
@Path(value="{componentId}/unlink-users")
@Produces(value="application/json")
void unlink(@PathParam(value="componentId")
String componentId)
componentId - @POST
@Path(value="{componentId}/mappers/{mapperId}/sync")
@Produces(value="application/json")
SynchronizationResultRepresentation syncMapperData(@PathParam(value="componentId")
String componentId,
@PathParam(value="mapperId")
String mapperId,
@QueryParam(value="direction")
String direction)
componentId - mapperId - direction - Copyright © 2021 JBoss by Red Hat. All rights reserved.