public interface JwtLocationOrBuilder
extends com.google.protobuf.MessageOrBuilder
Modifier and Type | Method and Description |
---|---|
String |
getHeader()
Specifies HTTP header name to extract JWT token.
|
com.google.protobuf.ByteString |
getHeaderBytes()
Specifies HTTP header name to extract JWT token.
|
JwtLocation.InCase |
getInCase() |
String |
getQuery()
Specifies URL query parameter name to extract JWT token.
|
com.google.protobuf.ByteString |
getQueryBytes()
Specifies URL query parameter name to extract JWT token.
|
String |
getValuePrefix()
The value prefix.
|
com.google.protobuf.ByteString |
getValuePrefixBytes()
The value prefix.
|
boolean |
hasHeader()
Specifies HTTP header name to extract JWT token.
|
boolean |
hasQuery()
Specifies URL query parameter name to extract JWT token.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
boolean hasHeader()
Specifies HTTP header name to extract JWT token.
string header = 1;
String getHeader()
Specifies HTTP header name to extract JWT token.
string header = 1;
com.google.protobuf.ByteString getHeaderBytes()
Specifies HTTP header name to extract JWT token.
string header = 1;
boolean hasQuery()
Specifies URL query parameter name to extract JWT token.
string query = 2;
String getQuery()
Specifies URL query parameter name to extract JWT token.
string query = 2;
com.google.protobuf.ByteString getQueryBytes()
Specifies URL query parameter name to extract JWT token.
string query = 2;
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;
com.google.protobuf.ByteString getValuePrefixBytes()
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;
JwtLocation.InCase getInCase()
Copyright © 2021 Google LLC. All rights reserved.