Interface ISessionsMgmt


@Path("/sessionsmgmt") public interface ISessionsMgmt
SessionsMgmt service
  • Method Details

    • logoutUser

      @DELETE @Path("{uid}/logout") void logoutUser(@PathParam("uid") String uid)
      Close all Blue-Mind sessions of requested user.

      Only token from global domain are allowed to do this.

      Parameters:
      latd - login at domain
      Throws:
      ServerFault
    • list

      @GET @Path("list") List<SessionEntry> list(@QueryParam("domain") String domainUid)
    • updateCurrent

      @POST @Path("updateContext") void updateCurrent(SessionUpdate ud)