Home | History | Annotate | Download | only in jsse

Lines Matching refs:protocols

37  * about enabled cipher suites and protocols,
72 // protocols available for SSL connection
246 * @return the set of enabled protocols
253 * Sets the set of available protocols for use in SSL connection.
254 * @param protocols String[]
256 protected void setEnabledProtocols(String[] protocols) {
257 if (protocols == null) {
258 throw new IllegalArgumentException("protocols == null");
260 for (int i=0; i<protocols.length; i++) {
261 String protocol = protocols[i];
263 throw new IllegalArgumentException("protocols[" + i + "] == null");
269 enabledProtocols = protocols;