Class Data


@RestController @RequestMapping("/vrspace/api/user-data") public class Data extends ClientControllerBase
Adds custom data to the user. These are simple key-value pairs, strings only. User has to be logged in and connected to use any of these methods, or else.
Author:
joe
  • Field Details

  • Constructor Details

    • Data

      public Data()
  • Method Details

    • listUserData

      @GetMapping public List<UserData> listUserData(jakarta.servlet.http.HttpSession session)
      List all user data belonging to the client.
    • setUserData

      @PostMapping public org.springframework.http.ResponseEntity<Void> setUserData(@RequestBody UserData data, jakarta.servlet.http.HttpSession session)
      Add or replace existing user data.
      Parameters:
      data - the key-value pair.
    • clearUserData

      @DeleteMapping public void clearUserData(jakarta.servlet.http.HttpSession session)
      Delete all user data belonging to the client.
    • deleteUserData

      @DeleteMapping("/{key}") public void deleteUserData(@PathVariable String key, jakarta.servlet.http.HttpSession session)
      Delete a value for the given key.
    • getUserData

      @GetMapping("/{key}") public org.springframework.http.ResponseEntity<UserData> getUserData(@PathVariable String key, jakarta.servlet.http.HttpSession session)
      Get user data for the key
      Parameters:
      key - specifies which value to get