Class AuthResponse

java.lang.Object
overit.geocall.base.rs2.auth.AuthResponse

public class AuthResponse extends Object
Data transfer object representing the response of the authentication service.
It contains the JWT token that ca be used to access to the resources exposed by this service provider, and the information about the token expiration.
Since:
9.0
GCApi:
dto
  • Constructor Details

    • AuthResponse

      public AuthResponse()
  • Method Details

    • getAccessToken

      public final String getAccessToken()
    • setAccessToken

      public final void setAccessToken(String accessToken)
    • getTokenType

      public final String getTokenType()
    • setTokenType

      public final void setTokenType(String tokenType)
    • getExpiresIn

      public final Long getExpiresIn()
    • setExpiresIn

      public final void setExpiresIn(Long expiresIn)
    • getExpires

      public final Long getExpires()
    • setExpires

      public final void setExpires(Long expires)
    • getRefreshAfter

      public final Long getRefreshAfter()
    • setRefreshAfter

      public final void setRefreshAfter(Long refreshAfter)