Class SSLParameters
public class SSLParameters : JVMBridgeBase<SSLParameters>, IDynamicMetaObjectProvider, IJVMBridgeCore, IEquatable<IJVMBridgeBase>, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition
- Inheritance
-
SSLParameters
- Implements
- Inherited Members
-
JVMBridgeBase<SSLParameters>.SExecuteWithSignature(Type, IJavaType, string, string, params object[])JVMBridgeBase<SSLParameters>.SExecute<TReturn, TConverter>(Type, IJavaType, string, params object[])JVMBridgeBase<SSLParameters>.SExecuteWithSignatureArray<TArrayType>(string, string, params object[])
- Extension Methods
Constructors
SSLParameters()
Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge
public SSLParameters()
SSLParameters(String[])
public SSLParameters(String[] arg0)
Parameters
SSLParameters(String[], String[])
public SSLParameters(String[] arg0, String[] arg1)
Parameters
SSLParameters(IJVMBridgeBaseInitializer)
Internal constructor: used internally from JCOBridge
[Obsolete("This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")]
public SSLParameters(IJVMBridgeBaseInitializer initializer)
Parameters
initializerIJVMBridgeBaseInitializer
SSLParameters(params object[])
Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class
public SSLParameters(params object[] args)
Parameters
argsobject[]
Properties
AlgorithmConstraints
https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLParameters.html#getAlgorithmConstraints-- https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLParameters.html#setAlgorithmConstraints-java.security.AlgorithmConstraints-
public AlgorithmConstraints AlgorithmConstraints { get; set; }
Property Value
ApplicationProtocols
https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLParameters.html#getApplicationProtocols-- https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLParameters.html#setApplicationProtocols-java.lang.String[]-
public String[] ApplicationProtocols { get; set; }
Property Value
- String[]
BridgeClassName
Java class name to be instantiated
public override string BridgeClassName { get; }
Property Value
CipherSuites
https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLParameters.html#getCipherSuites-- https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLParameters.html#setCipherSuites-java.lang.String[]-
public String[] CipherSuites { get; set; }
Property Value
- String[]
EndpointIdentificationAlgorithm
https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLParameters.html#getEndpointIdentificationAlgorithm-- https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLParameters.html#setEndpointIdentificationAlgorithm-java.lang.String-
public String EndpointIdentificationAlgorithm { get; set; }
Property Value
IsBridgeAbstract
true if the BridgeClassName is an abstract class, i.e. cannot be created an instance
public override bool IsBridgeAbstract { get; }
Property Value
IsBridgeCloseable
true if the BridgeClassName implements Closeable
public override bool IsBridgeCloseable { get; }
Property Value
IsBridgeInterface
true if the BridgeClassName is an interface, i.e. does not have any public constructor
public override bool IsBridgeInterface { get; }
Property Value
IsBridgeStatic
true if the BridgeClassName is a static class, i.e. does not have any public constructor
public override bool IsBridgeStatic { get; }
Property Value
NeedClientAuth
https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLParameters.html#getNeedClientAuth-- https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLParameters.html#setNeedClientAuth-boolean-
public bool NeedClientAuth { get; set; }
Property Value
Protocols
https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLParameters.html#getProtocols-- https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLParameters.html#setProtocols-java.lang.String[]-
public String[] Protocols { get; set; }
Property Value
- String[]
SNIMatchers
https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLParameters.html#getSNIMatchers-- https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLParameters.html#setSNIMatchers-java.util.Collection-
public Collection<SNIMatcher> SNIMatchers { get; set; }
Property Value
ServerNames
https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLParameters.html#getServerNames-- https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLParameters.html#setServerNames-java.util.List-
public List<SNIServerName> ServerNames { get; set; }
Property Value
UseCipherSuitesOrder
https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLParameters.html#getUseCipherSuitesOrder-- https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLParameters.html#setUseCipherSuitesOrder-boolean-
public bool UseCipherSuitesOrder { get; set; }
Property Value
WantClientAuth
https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLParameters.html#getWantClientAuth-- https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLParameters.html#setWantClientAuth-boolean-
public bool WantClientAuth { get; set; }