Interface IRequestContext

All Known Subinterfaces:
IRVUserContext
All Known Implementing Classes:
RVUserContext

public interface IRequestContext
Provides context about the request being processed, including the user's identity and any additional properties attached to the request.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the properties attached to this request context.
    Returns the ID of the user associated with this request.
  • Method Details

    • getUserId

      String getUserId()
      Returns the ID of the user associated with this request.
      Returns:
      the user ID, or null if no user is associated.
    • getProperties

      Map<String,Object> getProperties()
      Returns the properties attached to this request context.
      Returns:
      a map of property names to values; never null.