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

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

There is a newer version: 1.5.11
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy