< prev index next >

src/java.base/share/classes/javax/net/ssl/SSLServerSocket.java

Print this page

        

*** 238,248 **** * named by the parameter is not supported, or when * the parameter is null. * @see #getSupportedCipherSuites() * @see #getEnabledCipherSuites() */ ! public abstract void setEnabledCipherSuites(String suites []); /** * Returns the names of the cipher suites which could be enabled for use * on an SSL connection. --- 238,248 ---- * named by the parameter is not supported, or when * the parameter is null. * @see #getSupportedCipherSuites() * @see #getEnabledCipherSuites() */ ! public abstract void setEnabledCipherSuites(String[] suites); /** * Returns the names of the cipher suites which could be enabled for use * on an SSL connection.
*** 309,319 **** * the protocols named by the parameter is not supported or * when the protocols parameter is null. * @see #getEnabledProtocols() * @see #getSupportedProtocols() */ ! public abstract void setEnabledProtocols(String protocols[]); /** * Controls whether <code>accept</code>ed server-mode * <code>SSLSockets</code> will be initially configured to --- 309,319 ---- * the protocols named by the parameter is not supported or * when the protocols parameter is null. * @see #getEnabledProtocols() * @see #getSupportedProtocols() */ ! public abstract void setEnabledProtocols(String[] protocols); /** * Controls whether <code>accept</code>ed server-mode * <code>SSLSockets</code> will be initially configured to
< prev index next >