Interface JwtHeaderOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
JwtHeader,JwtHeader.Builder
public interface JwtHeaderOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()The HTTP header name.com.google.protobuf.ByteStringgetNameBytes()The HTTP header name.StringgetValuePrefix()The value prefix.com.google.protobuf.ByteStringgetValuePrefixBytes()The value prefix.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
The HTTP header name.
string name = 1 [(.validate.rules) = { ... }- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The HTTP header name.
string name = 1 [(.validate.rules) = { ... }- Returns:
- The bytes for name.
-
getValuePrefix
String getValuePrefix()
The value prefix. The value format is "value_prefix<token>" For example, for "Authorization: Bearer <token>", value_prefix="Bearer " with a space at the end.
string value_prefix = 2 [(.validate.rules) = { ... }- Returns:
- The valuePrefix.
-
getValuePrefixBytes
com.google.protobuf.ByteString getValuePrefixBytes()
The value prefix. The value format is "value_prefix<token>" For example, for "Authorization: Bearer <token>", value_prefix="Bearer " with a space at the end.
string value_prefix = 2 [(.validate.rules) = { ... }- Returns:
- The bytes for valuePrefix.
-
-