Package lumis.portal.user
Class UserInternalResource
- java.lang.Object
-
- lumis.portal.user.UserInternalResource
-
@Path("/lum-internal/users") public class UserInternalResource extends java.lang.Object
Rest Application for Users- Since:
- 8.0.0
- Version:
- $Revision: 24800 $ $Date: 2022-01-06 16:52:10 -0300 (Thu, 06 Jan 2022) $
-
-
Constructor Summary
Constructors Constructor Description UserInternalResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Response
getProfileImage(@NotNull java.lang.String userId)
Get the profile image file of the specified user based on his identifier or sends redirect to default image of no profile image is set.
-
-
-
Method Detail
-
getProfileImage
@Path("/{id:(([A-F0-9]{32})|default|current)}/profileimage") @GET public Response getProfileImage(@NotNull @PathParam("id") @NotNull java.lang.String userId)
Get the profile image file of the specified user based on his identifier or sends redirect to default image of no profile image is set.- Parameters:
userId
- the user identifier may be default, current or user identifier.- Returns:
- Response a response answering to use a cached image or with the profile image.
-
-