Interface GenericTransportToken


public interface GenericTransportToken
Tranposrt token is used to store the state data across requests. In case of HTTP this can be cookies or data stored in HTTP session. TCP connections this can be the tokens exchanged for state
  • Method Details

    • getTokenName

      String getTokenName()
      Name of the token.
      Returns:
    • getTokenVersion

      String getTokenVersion()
      Version of the token.
      Returns:
    • getMaxAgeInSeconds

      int getMaxAgeInSeconds()
      Token age.
      Returns:
    • isSecure

      boolean isSecure()
      secure flag used for HTTP cookies
      Returns:
    • getTokenValue

      String getTokenValue()
      Value of the token
      Returns:
    • getTokenDomain

      String getTokenDomain()
      Token domain. this decide the validity of the token in multi domain scenarios.
      Returns:
    • setTokenVersion

      void setTokenVersion<wbr>(String tokenVersion)
      sets the version of the token.
      Parameters:
      tokenVersion -
    • setMaxAgeInSeconds

      void setMaxAgeInSeconds<wbr>(int maxAgeInSeconds)
      sets the max age of the token.
      Parameters:
      maxAgeInSeconds -
    • setSecure

      void setSecure<wbr>(boolean isSecure)
      Parameters:
      isSecure -
    • setTokenValue

      void setTokenValue<wbr>(String tokenValue)
      set the secure flag for the token.
      Parameters:
      tokenValue -
    • setTokenDomain

      void setTokenDomain<wbr>(String tokenDomain)
      sets the domain of the token.
      Parameters:
      tokenDomain -