Interface GenericTransportStore


public interface GenericTransportStore
Transport store stores the attributes for session state.
  • Method Summary

    Modifier and Type
    Method
    Description
    getAttribute<wbr>(String name)
    retrieves an attribute store in the session.
    get the back-end store object contains the data.
    The type should be the type of store used for request cache.
    boolean
    Checks whether the session store implementation is valid or not.
    void
    remove the stored attribute from the session store.
    void
    setAttribute<wbr>(String name, Object value)
    Stores an attribute in the server.
    void
    setData<wbr>(Object data)
    set the back-end store object contains the data.
  • Method Details

    • getAttribute

      Object getAttribute<wbr>(String name)
      retrieves an attribute store in the session.
      Parameters:
      name -
      Returns:
    • setAttribute

      void setAttribute<wbr>(String name, Object value)
      Stores an attribute in the server.
      Parameters:
      name -
      value -
    • removeAttribute

      void removeAttribute<wbr>(String name)
      remove the stored attribute from the session store.
      Parameters:
      name -
    • isValid

      boolean isValid()
      Checks whether the session store implementation is valid or not. Some transport protocols will not support session store.In that case isValid will be false. Check if the session store is valid before doing any operations.
      Returns:
    • getData

      Object getData()
      get the back-end store object contains the data. getData will return the string or a map based on the format in which the data is cached. The caller is supposed to handle data based on the transport store implementation used.
      Returns:
    • setData

      void setData<wbr>(Object data)
      set the back-end store object contains the data. setData will set the string or a map based on the format in which the data is cached. The caller is supposed to handle data based on the transport store implementation used.
      Parameters:
      data -
    • getType

      String getType()
      The type should be the type of store used for request cache. Eg: COOKIE / FORM / BASIC
      Returns: