io.fusionauth.domain.api.jwt.RefreshRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fusionauth-java-client Show documentation
Show all versions of fusionauth-java-client Show documentation
The Java Client library provides a native Java binding to the FusionAuth REST API.
The newest version!
/*
* Copyright (c) 2018-2023, FusionAuth, All Rights Reserved
*/
package io.fusionauth.domain.api.jwt;
import com.inversoft.json.JacksonConstructor;
import io.fusionauth.domain.Buildable;
import io.fusionauth.domain.EventInfo;
import io.fusionauth.domain.api.BaseEventRequest;
/**
* @author Daniel DeGroff
*/
public class RefreshRequest extends BaseEventRequest implements Buildable {
public String refreshToken;
public String token;
@JacksonConstructor
public RefreshRequest() {
}
public RefreshRequest(String refreshToken) {
this.refreshToken = refreshToken;
}
public RefreshRequest(EventInfo eventInfo, String refreshToken) {
super(eventInfo);
this.refreshToken = refreshToken;
}
}
© 2015 - 2026 Weber Informatics LLC | Privacy Policy