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

org.openmetadata.service.auth.JwtResponse Maven / Gradle / Ivy

package org.openmetadata.service.auth;

import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
public class JwtResponse {
  private String accessToken;
  private String refreshToken;
  private String tokenType = "Bearer ";
  private Long expiryDuration;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy