org.finos.tracdap.config.AuthenticationConfigOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tracdap-api-config Show documentation
Show all versions of tracdap-api-config Show documentation
TRAC D.A.P. config library, contains data structures used for config files (and other config sources)
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: tracdap/config/common.proto
// Protobuf Java Version: 4.28.2
package org.finos.tracdap.config;
public interface AuthenticationConfigOrBuilder extends
// @@protoc_insertion_point(interface_extends:tracdap.config.AuthenticationConfig)
com.google.protobuf.MessageOrBuilder {
/**
* string jwtIssuer = 1;
* @return The jwtIssuer.
*/
java.lang.String getJwtIssuer();
/**
* string jwtIssuer = 1;
* @return The bytes for jwtIssuer.
*/
com.google.protobuf.ByteString
getJwtIssuerBytes();
/**
* sint32 jwtExpiry = 2;
* @return The jwtExpiry.
*/
int getJwtExpiry();
/**
* sint32 jwtLimit = 6;
* @return The jwtLimit.
*/
int getJwtLimit();
/**
* sint32 jwtRefresh = 7;
* @return The jwtRefresh.
*/
int getJwtRefresh();
/**
* optional .tracdap.config.PluginConfig provider = 3;
* @return Whether the provider field is set.
*/
boolean hasProvider();
/**
* optional .tracdap.config.PluginConfig provider = 3;
* @return The provider.
*/
org.finos.tracdap.config.PluginConfig getProvider();
/**
* optional .tracdap.config.PluginConfig provider = 3;
*/
org.finos.tracdap.config.PluginConfigOrBuilder getProviderOrBuilder();
/**
* bool disableAuth = 4;
* @return The disableAuth.
*/
boolean getDisableAuth();
/**
* bool disableSigning = 5;
* @return The disableSigning.
*/
boolean getDisableSigning();
/**
* string systemUserId = 8;
* @return The systemUserId.
*/
java.lang.String getSystemUserId();
/**
* string systemUserId = 8;
* @return The bytes for systemUserId.
*/
com.google.protobuf.ByteString
getSystemUserIdBytes();
/**
* string systemUserName = 9;
* @return The systemUserName.
*/
java.lang.String getSystemUserName();
/**
* string systemUserName = 9;
* @return The bytes for systemUserName.
*/
com.google.protobuf.ByteString
getSystemUserNameBytes();
/**
* sint32 systemTicketDuration = 10;
* @return The systemTicketDuration.
*/
int getSystemTicketDuration();
/**
* sint32 systemTicketRefresh = 11;
* @return The systemTicketRefresh.
*/
int getSystemTicketRefresh();
}