Class UserResource
- java.lang.Object
-
- io.jans.configapi.core.rest.BaseResource
-
- io.jans.configapi.plugin.mgt.rest.UserResource
-
@Path("/configuser") @Produces("application/json") @Consumes("application/json") @ApplicationScoped public class UserResource extends io.jans.configapi.core.rest.BaseResource
-
-
Constructor Summary
Constructors Constructor Description UserResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description jakarta.ws.rs.core.Response
createUser(@Valid CustomUser customUser)
jakarta.ws.rs.core.Response
deleteUser(@NotNull String inum)
jakarta.ws.rs.core.Response
getUserByInum(@NotNull String inum)
jakarta.ws.rs.core.Response
getUsers(int limit, String pattern, int startIndex, String sortBy, String sortOrder)
jakarta.ws.rs.core.Response
patchUser(@NotNull String inum, @NotNull UserPatchRequest userPatchRequest)
CustomUser
setCustomUserAttributes(CustomUser customUser, io.jans.as.common.model.common.User user)
CustomUser
setParentAttributes(CustomUser customUser, io.jans.as.common.model.common.User user)
jakarta.ws.rs.core.Response
updateUser(@Valid CustomUser customUser)
-
Methods inherited from class io.jans.configapi.core.rest.BaseResource
checkNotEmpty, checkNotEmpty, checkNotNull, checkResourceNotNull, createSearchRequest, getBadRequestException, getInternalServerException, getMissingAttributeError, getNotAcceptableException, getNotFoundError, thorwBadRequestException, thorwInternalServerException, throwMissingAttributeError
-
-
-
-
Method Detail
-
getUsers
@GET public jakarta.ws.rs.core.Response getUsers(@DefaultValue("50") @QueryParam("limit") int limit, @DefaultValue("") @QueryParam("pattern") String pattern, @DefaultValue("1") @QueryParam("startIndex") int startIndex, @QueryParam("sortBy") String sortBy, @QueryParam("sortOrder") String sortOrder) throws IllegalAccessException, InvocationTargetException
-
getUserByInum
@GET @Path("{inum}") public jakarta.ws.rs.core.Response getUserByInum(@PathParam("inum") @NotNull @NotNull String inum) throws IllegalAccessException, InvocationTargetException
-
createUser
@POST public jakarta.ws.rs.core.Response createUser(@Valid @Valid CustomUser customUser) throws NoSuchMethodException, IllegalAccessException, InvocationTargetException
-
updateUser
@PUT public jakarta.ws.rs.core.Response updateUser(@Valid @Valid CustomUser customUser) throws NoSuchMethodException, IllegalAccessException, InvocationTargetException
-
patchUser
@PATCH @Path("{inum}") public jakarta.ws.rs.core.Response patchUser(@PathParam("inum") @NotNull @NotNull String inum, @NotNull @NotNull UserPatchRequest userPatchRequest) throws IllegalAccessException, InvocationTargetException, com.github.fge.jsonpatch.JsonPatchException, IOException
- Throws:
IllegalAccessException
InvocationTargetException
com.github.fge.jsonpatch.JsonPatchException
IOException
-
deleteUser
@DELETE @Path("{inum}") public jakarta.ws.rs.core.Response deleteUser(@PathParam("inum") @NotNull @NotNull String inum)
-
setParentAttributes
public CustomUser setParentAttributes(CustomUser customUser, io.jans.as.common.model.common.User user)
-
setCustomUserAttributes
public CustomUser setCustomUserAttributes(CustomUser customUser, io.jans.as.common.model.common.User user)
-
-