106 lines
3.8 KiB
Java
106 lines
3.8 KiB
Java
![]() |
/*
|
||
|
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
|
||
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||
|
*
|
||
|
* This code is free software; you can redistribute it and/or modify it
|
||
|
* under the terms of the GNU General Public License version 2 only, as
|
||
|
* published by the Free Software Foundation. Oracle designates this
|
||
|
* particular file as subject to the "Classpath" exception as provided
|
||
|
* by Oracle in the LICENSE file that accompanied this code.
|
||
|
*
|
||
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||
|
* version 2 for more details (a copy is included in the LICENSE file that
|
||
|
* accompanied this code).
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License version
|
||
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
||
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||
|
*
|
||
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||
|
* or visit www.oracle.com if you need additional information or have any
|
||
|
* questions.
|
||
|
*/
|
||
|
|
||
|
package javax.net.ssl;
|
||
|
|
||
|
/**
|
||
|
* Instances of this class represent a matcher that performs match
|
||
|
* operations on an {@link SNIServerName} instance.
|
||
|
* <P>
|
||
|
* Servers can use Server Name Indication (SNI) information to decide if
|
||
|
* specific {@link SSLSocket} or {@link 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.
|
||
|
* <P>
|
||
|
* {@code SNIMatcher} objects are immutable. Subclasses should not provide
|
||
|
* methods that can change the state of an instance once it has been created.
|
||
|
*
|
||
|
* @see SNIServerName
|
||
|
* @see SNIHostName
|
||
|
* @see SSLParameters#getSNIMatchers()
|
||
|
* @see SSLParameters#setSNIMatchers(Collection)
|
||
|
*
|
||
|
* @since 1.8
|
||
|
*/
|
||
|
public abstract class SNIMatcher {
|
||
|
|
||
|
// the type of the server name that this matcher performs on
|
||
|
private final int type;
|
||
|
|
||
|
/**
|
||
|
* Creates an {@code SNIMatcher} using the specified server name type.
|
||
|
*
|
||
|
* @param type
|
||
|
* the type of the server name that this matcher performs on
|
||
|
*
|
||
|
* @throws IllegalArgumentException if {@code type} is not in the range
|
||
|
* of 0 to 255, inclusive.
|
||
|
*/
|
||
|
protected SNIMatcher(int type) {
|
||
|
if (type < 0) {
|
||
|
throw new IllegalArgumentException(
|
||
|
"Server name type cannot be less than zero");
|
||
|
} else if (type > 255) {
|
||
|
throw new IllegalArgumentException(
|
||
|
"Server name type cannot be greater than 255");
|
||
|
}
|
||
|
|
||
|
this.type = type;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the server name type of this {@code SNIMatcher} object.
|
||
|
*
|
||
|
* @return the server name type of this {@code SNIMatcher} object.
|
||
|
*
|
||
|
* @see SNIServerName
|
||
|
*/
|
||
|
public final int getType() {
|
||
|
return type;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Attempts to match the given {@link SNIServerName}.
|
||
|
*
|
||
|
* @param serverName
|
||
|
* the {@link SNIServerName} instance on which this matcher
|
||
|
* performs match operations
|
||
|
*
|
||
|
* @return {@code true} if, and only if, the matcher matches the
|
||
|
* given {@code serverName}
|
||
|
*
|
||
|
* @throws NullPointerException if {@code serverName} is {@code null}
|
||
|
* @throws IllegalArgumentException if {@code serverName} is
|
||
|
* not of the given server name type of this matcher
|
||
|
*
|
||
|
* @see SNIServerName
|
||
|
*/
|
||
|
public abstract boolean matches(SNIServerName serverName);
|
||
|
}
|