Package lumis.service.userlink
Class UserLinkResource
- java.lang.Object
-
- lumis.service.userlink.UserLinkResource
-
@Path("/lumis/service/userlink/rest") public class UserLinkResource extends java.lang.Object
Web Service available for user links.- Since:
- 10.1.0
- Version:
- $Revision: 20276 $ $Date: 2017-06-20 11:35:49 -0300 (Tue, 20 Jun 2017) $
-
-
Constructor Summary
Constructors Constructor Description UserLinkResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getUserLinks(@NotNull java.lang.String strlogins, @NotNull java.lang.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 java.lang.String getUserLinks(@QueryParam("logins") @NotNull @NotNull java.lang.String strlogins, @QueryParam("serviceInstanceId") @NotNull @NotNull java.lang.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)
-
-