All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.appform.idman.model.TokenInfo Maven / Gradle / Ivy

The newest version!
package io.appform.idman.model;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Value;

/**
 *
 */
@Value
public class TokenInfo {
    @JsonProperty("access_token")
    String accessToken;
    @JsonProperty("refresh_token")
    String refreshToken;
    @JsonProperty("expires_in")
    long expiry;
    @JsonProperty("token_type")
    String type;
    @JsonProperty("scope")
    String role;
    @JsonProperty("user")
    IdmanUser user;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy