Package lumis.service.userlink
Class UserLinkResource
- java.lang.Object
-
- lumis.service.userlink.UserLinkResource
-
-
Constructor Summary
Constructors Constructor Description UserLinkResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getUserLinks(@NotNull String strlogins, @NotNull String serviceInstanceId)
Given an array of logins, returns a json array with all users meta informaiton.
-
-
-
Method Detail
-
getUserLinks
@Path("/getuserlinks") @GET @Produces("application/json") public String getUserLinks(@QueryParam("logins") @NotNull @NotNull String strlogins, @QueryParam("serviceInstanceId") @NotNull @NotNull String serviceInstanceId) throws PortalException
Given an array of logins, returns a json array with all users meta informaiton.- Parameters:
strlogins
- a semicolon separated list of loginsserviceInstanceId
- serviceInstance identifier of the user link service- Returns:
- a json array of user links
- Throws:
PortalException
- Since:
- 10.1.0
- See Also:
IUserManagerSPI.getUsersByLogins(Set)
-
-