com.google.api.JwtLocationOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pekko-connectors-google-cloud-bigquery-storage_3 Show documentation
Show all versions of pekko-connectors-google-cloud-bigquery-storage_3 Show documentation
Apache Pekko Connectors is a Reactive Enterprise Integration library for Java and Scala, based on Reactive Streams and Pekko.
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/api/auth.proto
// Protobuf Java Version: 3.25.3
package com.google.api;
public interface JwtLocationOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.api.JwtLocation)
com.google.protobuf.MessageOrBuilder {
/**
*
* Specifies HTTP header name to extract JWT token.
*
*
* string header = 1;
* @return Whether the header field is set.
*/
boolean hasHeader();
/**
*
* Specifies HTTP header name to extract JWT token.
*
*
* string header = 1;
* @return The header.
*/
java.lang.String getHeader();
/**
*
* Specifies HTTP header name to extract JWT token.
*
*
* string header = 1;
* @return The bytes for header.
*/
com.google.protobuf.ByteString
getHeaderBytes();
/**
*
* Specifies URL query parameter name to extract JWT token.
*
*
* string query = 2;
* @return Whether the query field is set.
*/
boolean hasQuery();
/**
*
* Specifies URL query parameter name to extract JWT token.
*
*
* string query = 2;
* @return The query.
*/
java.lang.String getQuery();
/**
*
* Specifies URL query parameter name to extract JWT token.
*
*
* string query = 2;
* @return The bytes for query.
*/
com.google.protobuf.ByteString
getQueryBytes();
/**
*
* Specifies cookie name to extract JWT token.
*
*
* string cookie = 4;
* @return Whether the cookie field is set.
*/
boolean hasCookie();
/**
*
* Specifies cookie name to extract JWT token.
*
*
* string cookie = 4;
* @return The cookie.
*/
java.lang.String getCookie();
/**
*
* Specifies cookie name to extract JWT token.
*
*
* string cookie = 4;
* @return The bytes for cookie.
*/
com.google.protobuf.ByteString
getCookieBytes();
/**
*
* The value prefix. The value format is "value_prefix{token}"
* Only applies to "in" header type. Must be empty for "in" query type.
* If not empty, the header value has to match (case sensitive) this prefix.
* If not matched, JWT will not be extracted. If matched, JWT will be
* extracted after the prefix is removed.
*
* For example, for "Authorization: Bearer {JWT}",
* value_prefix="Bearer " with a space at the end.
*
*
* string value_prefix = 3;
* @return The valuePrefix.
*/
java.lang.String getValuePrefix();
/**
*
* The value prefix. The value format is "value_prefix{token}"
* Only applies to "in" header type. Must be empty for "in" query type.
* If not empty, the header value has to match (case sensitive) this prefix.
* If not matched, JWT will not be extracted. If matched, JWT will be
* extracted after the prefix is removed.
*
* For example, for "Authorization: Bearer {JWT}",
* value_prefix="Bearer " with a space at the end.
*
*
* string value_prefix = 3;
* @return The bytes for valuePrefix.
*/
com.google.protobuf.ByteString
getValuePrefixBytes();
com.google.api.JwtLocation.InCase getInCase();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy