.. java:import:: org.slf4j Logger .. java:import:: org.slf4j LoggerFactory .. java:import:: java.time LocalDate .. java:import:: java.time LocalDateTime .. java:import:: java.util Date TokenResponse ============= .. java:package:: io.taskmonk.auth :noindex: .. java:type:: public class TokenResponse Fields ------ access_token ^^^^^^^^^^^^ .. java:field:: String access_token :outertype: TokenResponse expires_at ^^^^^^^^^^ .. java:field:: LocalDateTime expires_at :outertype: TokenResponse expires_in ^^^^^^^^^^ .. java:field:: Long expires_in :outertype: TokenResponse refresh_token ^^^^^^^^^^^^^ .. java:field:: String refresh_token :outertype: TokenResponse token_type ^^^^^^^^^^ .. java:field:: String token_type :outertype: TokenResponse Constructors ------------ TokenResponse ^^^^^^^^^^^^^ .. java:constructor:: public TokenResponse() :outertype: TokenResponse TokenResponse ^^^^^^^^^^^^^ .. java:constructor:: public TokenResponse(String token_type, String access_token, String refresh_token, Long expires_in) :outertype: TokenResponse Methods ------- getAccess_token ^^^^^^^^^^^^^^^ .. java:method:: public String getAccess_token() :outertype: TokenResponse getExpires_in ^^^^^^^^^^^^^ .. java:method:: public Long getExpires_in() :outertype: TokenResponse getRefresh_token ^^^^^^^^^^^^^^^^ .. java:method:: public String getRefresh_token() :outertype: TokenResponse getToken_type ^^^^^^^^^^^^^ .. java:method:: public String getToken_type() :outertype: TokenResponse isExpired ^^^^^^^^^ .. java:method:: public Boolean isExpired() :outertype: TokenResponse setAccess_token ^^^^^^^^^^^^^^^ .. java:method:: public void setAccess_token(String access_token) :outertype: TokenResponse setExpires_in ^^^^^^^^^^^^^ .. java:method:: public void setExpires_in(Long expires_in) :outertype: TokenResponse setRefresh_token ^^^^^^^^^^^^^^^^ .. java:method:: public void setRefresh_token(String refresh_token) :outertype: TokenResponse setToken_type ^^^^^^^^^^^^^ .. java:method:: public void setToken_type(String token_type) :outertype: TokenResponse toString ^^^^^^^^ .. java:method:: @Override public String toString() :outertype: TokenResponse