Class 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$ $Date$
    • 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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • UserLinkResource

        public UserLinkResource()
    • 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 logins
        serviceInstanceId - 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)