Home | History | Annotate | Download | only in ssl

Lines Matching defs:protocols

40  * the list of protocols to be allowed, the endpoint identification
69 private String[] protocols;
81 * The values of cipherSuites, protocols, cryptographic algorithm
105 * and protocols.
109 * <code>setCipherSuites(cipherSuites); setProtocols(protocols);</code>.
112 * @param protocols the array of protocols (or null)
114 public SSLParameters(String[] cipherSuites, String[] protocols) {
116 setProtocols(protocols);
144 * Returns a copy of the array of protocols or null if none
147 * @return a copy of the array of protocols or null if none
151 return clone(protocols);
155 * Sets the array of protocols.
157 * @param protocols the array of protocols (or null)
159 public void setProtocols(String[] protocols) {
160 this.protocols = clone(protocols);