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

    Modifier and Type
    Method
    Description
    The HTTP header name.
    com.google.protobuf.ByteString
    The HTTP header name.
    The value prefix.
    com.google.protobuf.ByteString
    The value prefix.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • 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;
      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;
      Returns:
      The bytes for valuePrefix.