Class ServerNameMatcher

java.lang.Object
com.google.protobuf.AbstractMessageLite
com.google.protobuf.AbstractMessage
com.google.protobuf.GeneratedMessageV3
com.github.xds.type.matcher.v3.ServerNameMatcher
All Implemented Interfaces:
ServerNameMatcherOrBuilder, com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, Serializable

public final class ServerNameMatcher extends com.google.protobuf.GeneratedMessageV3 implements ServerNameMatcherOrBuilder
 Matches a fully qualified server name against a set of domain
 names with optional wildcards.
 
Protobuf type xds.type.matcher.v3.ServerNameMatcher
See Also:
  • Field Details

    • DOMAIN_MATCHERS_FIELD_NUMBER

      public static final int DOMAIN_MATCHERS_FIELD_NUMBER
      See Also:
  • Method Details

    • newInstance

      protected Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
      Overrides:
      newInstance in class com.google.protobuf.GeneratedMessageV3
    • getDescriptor

      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • internalGetFieldAccessorTable

      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
    • getDomainMatchersList

      public List<ServerNameMatcher.DomainMatcher> getDomainMatchersList()
       Match a server name by multiple domain matchers. Each domain, exact or
       wildcard, must appear at most once across all the domain matchers.
      
       The server name will be matched against all wildcard domains starting from
       the longest suffix, i.e. ``www.example.com`` input will be first matched
       against ``www.example.com``, then ``*.example.com``, then ``*.com``, then
       ``*``, until the associated matcher action accepts the input. Note that
       wildcards must be on a dot border, and values like ``*w.example.com`` are
       invalid.
       
      repeated .xds.type.matcher.v3.ServerNameMatcher.DomainMatcher domain_matchers = 1;
      Specified by:
      getDomainMatchersList in interface ServerNameMatcherOrBuilder
    • getDomainMatchersOrBuilderList

      public List<? extends ServerNameMatcher.DomainMatcherOrBuilder> getDomainMatchersOrBuilderList()
       Match a server name by multiple domain matchers. Each domain, exact or
       wildcard, must appear at most once across all the domain matchers.
      
       The server name will be matched against all wildcard domains starting from
       the longest suffix, i.e. ``www.example.com`` input will be first matched
       against ``www.example.com``, then ``*.example.com``, then ``*.com``, then
       ``*``, until the associated matcher action accepts the input. Note that
       wildcards must be on a dot border, and values like ``*w.example.com`` are
       invalid.
       
      repeated .xds.type.matcher.v3.ServerNameMatcher.DomainMatcher domain_matchers = 1;
      Specified by:
      getDomainMatchersOrBuilderList in interface ServerNameMatcherOrBuilder
    • getDomainMatchersCount

      public int getDomainMatchersCount()
       Match a server name by multiple domain matchers. Each domain, exact or
       wildcard, must appear at most once across all the domain matchers.
      
       The server name will be matched against all wildcard domains starting from
       the longest suffix, i.e. ``www.example.com`` input will be first matched
       against ``www.example.com``, then ``*.example.com``, then ``*.com``, then
       ``*``, until the associated matcher action accepts the input. Note that
       wildcards must be on a dot border, and values like ``*w.example.com`` are
       invalid.
       
      repeated .xds.type.matcher.v3.ServerNameMatcher.DomainMatcher domain_matchers = 1;
      Specified by:
      getDomainMatchersCount in interface ServerNameMatcherOrBuilder
    • getDomainMatchers

      public ServerNameMatcher.DomainMatcher getDomainMatchers(int index)
       Match a server name by multiple domain matchers. Each domain, exact or
       wildcard, must appear at most once across all the domain matchers.
      
       The server name will be matched against all wildcard domains starting from
       the longest suffix, i.e. ``www.example.com`` input will be first matched
       against ``www.example.com``, then ``*.example.com``, then ``*.com``, then
       ``*``, until the associated matcher action accepts the input. Note that
       wildcards must be on a dot border, and values like ``*w.example.com`` are
       invalid.
       
      repeated .xds.type.matcher.v3.ServerNameMatcher.DomainMatcher domain_matchers = 1;
      Specified by:
      getDomainMatchers in interface ServerNameMatcherOrBuilder
    • getDomainMatchersOrBuilder

      public ServerNameMatcher.DomainMatcherOrBuilder getDomainMatchersOrBuilder(int index)
       Match a server name by multiple domain matchers. Each domain, exact or
       wildcard, must appear at most once across all the domain matchers.
      
       The server name will be matched against all wildcard domains starting from
       the longest suffix, i.e. ``www.example.com`` input will be first matched
       against ``www.example.com``, then ``*.example.com``, then ``*.com``, then
       ``*``, until the associated matcher action accepts the input. Note that
       wildcards must be on a dot border, and values like ``*w.example.com`` are
       invalid.
       
      repeated .xds.type.matcher.v3.ServerNameMatcher.DomainMatcher domain_matchers = 1;
      Specified by:
      getDomainMatchersOrBuilder in interface ServerNameMatcherOrBuilder
    • isInitialized

      public final boolean isInitialized()
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessageV3
    • writeTo

      public void writeTo(com.google.protobuf.CodedOutputStream output) throws IOException
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessageV3
      Throws:
      IOException
    • getSerializedSize

      public int getSerializedSize()
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessageV3
    • equals

      public boolean equals(Object obj)
      Specified by:
      equals in interface com.google.protobuf.Message
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
    • hashCode

      public int hashCode()
      Specified by:
      hashCode in interface com.google.protobuf.Message
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
    • parseFrom

      public static ServerNameMatcher parseFrom(ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static ServerNameMatcher parseFrom(ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static ServerNameMatcher parseFrom(com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static ServerNameMatcher parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static ServerNameMatcher parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static ServerNameMatcher parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static ServerNameMatcher parseFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static ServerNameMatcher parseFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static ServerNameMatcher parseDelimitedFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static ServerNameMatcher parseDelimitedFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseFrom

      public static ServerNameMatcher parseFrom(com.google.protobuf.CodedInputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static ServerNameMatcher parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • newBuilderForType

      public ServerNameMatcher.Builder newBuilderForType()
      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
    • newBuilder

      public static ServerNameMatcher.Builder newBuilder()
    • newBuilder

      public static ServerNameMatcher.Builder newBuilder(ServerNameMatcher prototype)
    • toBuilder

      public ServerNameMatcher.Builder toBuilder()
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
    • newBuilderForType

      protected ServerNameMatcher.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
      Specified by:
      newBuilderForType in class com.google.protobuf.GeneratedMessageV3
    • getDefaultInstance

      public static ServerNameMatcher getDefaultInstance()
    • parser

      public static com.google.protobuf.Parser<ServerNameMatcher> parser()
    • getParserForType

      public com.google.protobuf.Parser<ServerNameMatcher> getParserForType()
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessageV3
    • getDefaultInstanceForType

      public ServerNameMatcher getDefaultInstanceForType()
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder