Searched refs:matchers (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/javax/net/ssl/
H A DSSLParameters.java83 * server name matchers are set to <code>null</code>, useCipherSuitesOrder,
371 * Note that the {@code matchers} collection is cloned to protect
374 * @param matchers
377 * @throws NullPointerException if the {@code matchers}
379 * @throws IllegalArgumentException if the {@code matchers}
388 public final void setSNIMatchers(Collection<SNIMatcher> matchers) { argument
389 if (matchers != null) {
390 if (!matchers.isEmpty()) {
391 sniMatchers = new HashMap<>(matchers.size());
392 for (SNIMatcher matcher : matchers) {
[all...]

Completed in 41 milliseconds