Java™ Platform
Standard Ed. 8
compact1, compact2, compact3
javax.net.ssl

Class SNIMatcher



  • public abstract class SNIMatcher
    extends Object
    Instances of this class represent a matcher that performs match operations on an SNIServerName instance.

    Servers can use Server Name Indication (SNI) information to decide if specific SSLSocket or SSLEngine instances should accept a connection. For example, when multiple "virtual" or "name-based" servers are hosted on a single underlying network address, the server application can use SNI information to determine whether this server is the exact server that the client wants to access. Instances of this class can be used by a server to verify the acceptable server names of a particular type, such as host names.

    SNIMatcher objects are immutable. Subclasses should not provide methods that can change the state of an instance once it has been created.

    Since:
    1.8
    See Also:
    SNIServerName, SNIHostName, SSLParameters.getSNIMatchers(), SSLParameters.setSNIMatchers(Collection)
    • Constructor Detail

      • SNIMatcher

        protected SNIMatcher(int type)
        Creates an SNIMatcher using the specified server name type.
        Parameters:
        type - the type of the server name that this matcher performs on
        Throws:
        IllegalArgumentException - if type is not in the range of 0 to 255, inclusive.
    • Method Detail

      • getType

        public final int getType()
        Returns the server name type of this SNIMatcher object.
        Returns:
        the server name type of this SNIMatcher object.
        See Also:
        SNIServerName
Java™ Platform
Standard Ed. 8

Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2022, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.

微信小程序

微信扫一扫体验

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部