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

org.openmetadata.schema.TokenInterface Maven / Gradle / Ivy

There is a newer version: 1.6.0-rc1
Show newest version
package org.openmetadata.schema;

import java.util.UUID;
import org.openmetadata.schema.auth.TokenType;

public interface TokenInterface {
  UUID getToken();

  UUID getUserId();

  TokenType getTokenType();

  Long getExpiryDate();

  void setToken(UUID id);

  void setUserId(UUID id);

  void setTokenType(TokenType type);

  void setExpiryDate(Long expiry);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy