Home | History | Annotate | Download | only in ssl

Lines Matching refs:protocol

34  * Instances of this class represent a secure socket protocol
80 * This protocol is described in the <a href=
92 private final String protocol;
99 * @param protocol the protocol
102 String protocol) {
105 this.protocol = protocol;
160 * specified secure socket protocol.
166 * Provider that supports the specified protocol is returned.
171 * @param protocol the standard name of the requested protocol.
176 * for information about standard protocol names.
182 * specified protocol.
183 * @exception NullPointerException if protocol is null.
187 public static SSLContext getInstance(String protocol)
190 ("SSLContext", SSLContextSpi.class, protocol);
192 protocol);
197 * specified secure socket protocol.
207 * @param protocol the standard name of the requested protocol.
212 * for information about standard protocol names.
219 * implementation for the specified protocol is not
226 * @throws NullPointerException if protocol is null.
230 public static SSLContext getInstance(String protocol, String provider)
233 ("SSLContext", SSLContextSpi.class, protocol, provider);
235 protocol);
240 * specified secure socket protocol.
247 * @param protocol the standard name of the requested protocol.
252 * for information about standard protocol names.
259 * implementation for the specified protocol is not available
263 * @throws NullPointerException if protocol is null.
267 public static SSLContext getInstance(String protocol, Provider provider)
270 ("SSLContext", SSLContextSpi.class, protocol, provider);
272 protocol);
276 * Returns the protocol name of this <code>SSLContext</code> object.
282 * @return the protocol name of this <code>SSLContext</code> object.
285 return this.protocol;