Package org.camunda.bpm.engine.rest
Interface UserRestService
- All Known Implementing Classes:
UserRestServiceImpl
@Produces("application/json")
public interface UserRestService
- Author:
- Daniel Meyer
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionavailableOperations
(jakarta.ws.rs.core.UriInfo context) void
createUser
(UserDto userDto) getUserCount
(jakarta.ws.rs.core.UriInfo uriInfo) queryUsers
(jakarta.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults)
-
Field Details
-
PATH
- See Also:
-
-
Method Details
-
getUser
-
queryUsers
@GET @Produces("application/json") List<UserProfileDto> queryUsers(@Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults) -
getUserCount
@GET @Path("/count") @Produces("application/json") CountResultDto getUserCount(@Context jakarta.ws.rs.core.UriInfo uriInfo) -
createUser
-
availableOperations
@OPTIONS @Produces("application/json") ResourceOptionsDto availableOperations(@Context jakarta.ws.rs.core.UriInfo context)
-