public abstract class io.vertx.core.net.TCPSSLOptions extends io.vertx.core.net.NetworkOptions
minor version: 0
major version: 59
flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
this_class: io.vertx.core.net.TCPSSLOptions
super_class: io.vertx.core.net.NetworkOptions
{
public static final boolean DEFAULT_TCP_NO_DELAY;
descriptor: Z
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 1
public static final boolean DEFAULT_TCP_KEEP_ALIVE;
descriptor: Z
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 0
public static final int DEFAULT_SO_LINGER;
descriptor: I
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: -1
public static final boolean DEFAULT_SSL;
descriptor: Z
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 0
public static final int DEFAULT_IDLE_TIMEOUT;
descriptor: I
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 0
public static final java.util.concurrent.TimeUnit DEFAULT_IDLE_TIMEOUT_TIME_UNIT;
descriptor: Ljava/util/concurrent/TimeUnit;
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
public static final boolean DEFAULT_USE_ALPN;
descriptor: Z
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 0
public static final io.vertx.core.net.SSLEngineOptions DEFAULT_SSL_ENGINE;
descriptor: Lio/vertx/core/net/SSLEngineOptions;
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
public static final java.util.List<java.lang.String> DEFAULT_ENABLED_SECURE_TRANSPORT_PROTOCOLS;
descriptor: Ljava/util/List;
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
Signature: Ljava/util/List<Ljava/lang/String;>;
public static final boolean DEFAULT_TCP_FAST_OPEN;
descriptor: Z
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 0
public static final boolean DEFAULT_TCP_CORK;
descriptor: Z
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 0
public static final boolean DEFAULT_TCP_QUICKACK;
descriptor: Z
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 0
public static final long DEFAULT_SSL_HANDSHAKE_TIMEOUT;
descriptor: J
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 10
public static final java.util.concurrent.TimeUnit DEFAULT_SSL_HANDSHAKE_TIMEOUT_TIME_UNIT;
descriptor: Ljava/util/concurrent/TimeUnit;
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
private boolean tcpNoDelay;
descriptor: Z
flags: (0x0002) ACC_PRIVATE
private boolean tcpKeepAlive;
descriptor: Z
flags: (0x0002) ACC_PRIVATE
private int soLinger;
descriptor: I
flags: (0x0002) ACC_PRIVATE
private int idleTimeout;
descriptor: I
flags: (0x0002) ACC_PRIVATE
private java.util.concurrent.TimeUnit idleTimeoutUnit;
descriptor: Ljava/util/concurrent/TimeUnit;
flags: (0x0002) ACC_PRIVATE
private boolean ssl;
descriptor: Z
flags: (0x0002) ACC_PRIVATE
private long sslHandshakeTimeout;
descriptor: J
flags: (0x0002) ACC_PRIVATE
private java.util.concurrent.TimeUnit sslHandshakeTimeoutUnit;
descriptor: Ljava/util/concurrent/TimeUnit;
flags: (0x0002) ACC_PRIVATE
private io.vertx.core.net.KeyCertOptions keyCertOptions;
descriptor: Lio/vertx/core/net/KeyCertOptions;
flags: (0x0002) ACC_PRIVATE
private io.vertx.core.net.TrustOptions trustOptions;
descriptor: Lio/vertx/core/net/TrustOptions;
flags: (0x0002) ACC_PRIVATE
private java.util.Set<java.lang.String> enabledCipherSuites;
descriptor: Ljava/util/Set;
flags: (0x0002) ACC_PRIVATE
Signature: Ljava/util/Set<Ljava/lang/String;>;
private java.util.ArrayList<java.lang.String> crlPaths;
descriptor: Ljava/util/ArrayList;
flags: (0x0002) ACC_PRIVATE
Signature: Ljava/util/ArrayList<Ljava/lang/String;>;
private java.util.ArrayList<io.vertx.core.buffer.Buffer> crlValues;
descriptor: Ljava/util/ArrayList;
flags: (0x0002) ACC_PRIVATE
Signature: Ljava/util/ArrayList<Lio/vertx/core/buffer/Buffer;>;
private boolean useAlpn;
descriptor: Z
flags: (0x0002) ACC_PRIVATE
private io.vertx.core.net.SSLEngineOptions sslEngineOptions;
descriptor: Lio/vertx/core/net/SSLEngineOptions;
flags: (0x0002) ACC_PRIVATE
private java.util.Set<java.lang.String> enabledSecureTransportProtocols;
descriptor: Ljava/util/Set;
flags: (0x0002) ACC_PRIVATE
Signature: Ljava/util/Set<Ljava/lang/String;>;
private boolean tcpFastOpen;
descriptor: Z
flags: (0x0002) ACC_PRIVATE
private boolean tcpCork;
descriptor: Z
flags: (0x0002) ACC_PRIVATE
private boolean tcpQuickAck;
descriptor: Z
flags: (0x0002) ACC_PRIVATE
static void <clinit>();
descriptor: ()V
flags: (0x0008) ACC_STATIC
Code:
stack=4, locals=0, args_size=0
0: getstatic java.util.concurrent.TimeUnit.SECONDS:Ljava/util/concurrent/TimeUnit;
putstatic io.vertx.core.net.TCPSSLOptions.DEFAULT_IDLE_TIMEOUT_TIME_UNIT:Ljava/util/concurrent/TimeUnit;
1: aconst_null
putstatic io.vertx.core.net.TCPSSLOptions.DEFAULT_SSL_ENGINE:Lio/vertx/core/net/SSLEngineOptions;
2: iconst_3
anewarray java.lang.String
dup
iconst_0
ldc "TLSv1"
aastore
dup
iconst_1
ldc "TLSv1.1"
aastore
dup
iconst_2
ldc "TLSv1.2"
aastore
invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
putstatic io.vertx.core.net.TCPSSLOptions.DEFAULT_ENABLED_SECURE_TRANSPORT_PROTOCOLS:Ljava/util/List;
3: getstatic java.util.concurrent.TimeUnit.SECONDS:Ljava/util/concurrent/TimeUnit;
putstatic io.vertx.core.net.TCPSSLOptions.DEFAULT_SSL_HANDSHAKE_TIMEOUT_TIME_UNIT:Ljava/util/concurrent/TimeUnit;
return
LocalVariableTable:
Start End Slot Name Signature
public void <init>();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokespecial io.vertx.core.net.NetworkOptions.<init>:()V
1: aload 0
invokevirtual io.vertx.core.net.TCPSSLOptions.init:()V
2: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lio/vertx/core/net/TCPSSLOptions;
public void <init>(io.vertx.core.net.TCPSSLOptions);
descriptor: (Lio/vertx/core/net/TCPSSLOptions;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokespecial io.vertx.core.net.NetworkOptions.<init>:(Lio/vertx/core/net/NetworkOptions;)V
1: aload 0
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.isTcpNoDelay:()Z
putfield io.vertx.core.net.TCPSSLOptions.tcpNoDelay:Z
2: aload 0
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.isTcpKeepAlive:()Z
putfield io.vertx.core.net.TCPSSLOptions.tcpKeepAlive:Z
3: aload 0
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.getSoLinger:()I
putfield io.vertx.core.net.TCPSSLOptions.soLinger:I
4: aload 0
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.getIdleTimeout:()I
putfield io.vertx.core.net.TCPSSLOptions.idleTimeout:I
5: aload 0
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.getIdleTimeoutUnit:()Ljava/util/concurrent/TimeUnit;
ifnull 6
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.getIdleTimeoutUnit:()Ljava/util/concurrent/TimeUnit;
goto 7
StackMap locals: io.vertx.core.net.TCPSSLOptions io.vertx.core.net.TCPSSLOptions
StackMap stack: io.vertx.core.net.TCPSSLOptions
6: getstatic io.vertx.core.net.TCPSSLOptions.DEFAULT_IDLE_TIMEOUT_TIME_UNIT:Ljava/util/concurrent/TimeUnit;
StackMap locals: io.vertx.core.net.TCPSSLOptions io.vertx.core.net.TCPSSLOptions
StackMap stack: io.vertx.core.net.TCPSSLOptions java.util.concurrent.TimeUnit
7: putfield io.vertx.core.net.TCPSSLOptions.idleTimeoutUnit:Ljava/util/concurrent/TimeUnit;
8: aload 0
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.isSsl:()Z
putfield io.vertx.core.net.TCPSSLOptions.ssl:Z
9: aload 0
aload 1
getfield io.vertx.core.net.TCPSSLOptions.sslHandshakeTimeout:J
putfield io.vertx.core.net.TCPSSLOptions.sslHandshakeTimeout:J
10: aload 0
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.getSslHandshakeTimeoutUnit:()Ljava/util/concurrent/TimeUnit;
ifnull 11
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.getSslHandshakeTimeoutUnit:()Ljava/util/concurrent/TimeUnit;
goto 12
StackMap locals:
StackMap stack: io.vertx.core.net.TCPSSLOptions
11: getstatic io.vertx.core.net.TCPSSLOptions.DEFAULT_SSL_HANDSHAKE_TIMEOUT_TIME_UNIT:Ljava/util/concurrent/TimeUnit;
StackMap locals: io.vertx.core.net.TCPSSLOptions io.vertx.core.net.TCPSSLOptions
StackMap stack: io.vertx.core.net.TCPSSLOptions java.util.concurrent.TimeUnit
12: putfield io.vertx.core.net.TCPSSLOptions.sslHandshakeTimeoutUnit:Ljava/util/concurrent/TimeUnit;
13: aload 0
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.getKeyCertOptions:()Lio/vertx/core/net/KeyCertOptions;
ifnull 14
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.getKeyCertOptions:()Lio/vertx/core/net/KeyCertOptions;
invokeinterface io.vertx.core.net.KeyCertOptions.copy:()Lio/vertx/core/net/KeyCertOptions;
goto 15
StackMap locals:
StackMap stack: io.vertx.core.net.TCPSSLOptions
14: aconst_null
StackMap locals: io.vertx.core.net.TCPSSLOptions io.vertx.core.net.TCPSSLOptions
StackMap stack: io.vertx.core.net.TCPSSLOptions io.vertx.core.net.KeyCertOptions
15: putfield io.vertx.core.net.TCPSSLOptions.keyCertOptions:Lio/vertx/core/net/KeyCertOptions;
16: aload 0
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.getTrustOptions:()Lio/vertx/core/net/TrustOptions;
ifnull 17
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.getTrustOptions:()Lio/vertx/core/net/TrustOptions;
invokeinterface io.vertx.core.net.TrustOptions.copy:()Lio/vertx/core/net/TrustOptions;
goto 18
StackMap locals:
StackMap stack: io.vertx.core.net.TCPSSLOptions
17: aconst_null
StackMap locals: io.vertx.core.net.TCPSSLOptions io.vertx.core.net.TCPSSLOptions
StackMap stack: io.vertx.core.net.TCPSSLOptions io.vertx.core.net.TrustOptions
18: putfield io.vertx.core.net.TCPSSLOptions.trustOptions:Lio/vertx/core/net/TrustOptions;
19: aload 0
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.getEnabledCipherSuites:()Ljava/util/Set;
ifnonnull 20
new java.util.LinkedHashSet
dup
invokespecial java.util.LinkedHashSet.<init>:()V
goto 21
StackMap locals:
StackMap stack: io.vertx.core.net.TCPSSLOptions
20: new java.util.LinkedHashSet
dup
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.getEnabledCipherSuites:()Ljava/util/Set;
invokespecial java.util.LinkedHashSet.<init>:(Ljava/util/Collection;)V
StackMap locals: io.vertx.core.net.TCPSSLOptions io.vertx.core.net.TCPSSLOptions
StackMap stack: io.vertx.core.net.TCPSSLOptions java.util.LinkedHashSet
21: putfield io.vertx.core.net.TCPSSLOptions.enabledCipherSuites:Ljava/util/Set;
22: aload 0
new java.util.ArrayList
dup
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.getCrlPaths:()Ljava/util/List;
invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
putfield io.vertx.core.net.TCPSSLOptions.crlPaths:Ljava/util/ArrayList;
23: aload 0
new java.util.ArrayList
dup
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.getCrlValues:()Ljava/util/List;
invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
putfield io.vertx.core.net.TCPSSLOptions.crlValues:Ljava/util/ArrayList;
24: aload 0
aload 1
getfield io.vertx.core.net.TCPSSLOptions.useAlpn:Z
putfield io.vertx.core.net.TCPSSLOptions.useAlpn:Z
25: aload 0
aload 1
getfield io.vertx.core.net.TCPSSLOptions.sslEngineOptions:Lio/vertx/core/net/SSLEngineOptions;
ifnull 26
aload 1
getfield io.vertx.core.net.TCPSSLOptions.sslEngineOptions:Lio/vertx/core/net/SSLEngineOptions;
invokevirtual io.vertx.core.net.SSLEngineOptions.copy:()Lio/vertx/core/net/SSLEngineOptions;
goto 27
StackMap locals:
StackMap stack: io.vertx.core.net.TCPSSLOptions
26: aconst_null
StackMap locals: io.vertx.core.net.TCPSSLOptions io.vertx.core.net.TCPSSLOptions
StackMap stack: io.vertx.core.net.TCPSSLOptions io.vertx.core.net.SSLEngineOptions
27: putfield io.vertx.core.net.TCPSSLOptions.sslEngineOptions:Lio/vertx/core/net/SSLEngineOptions;
28: aload 0
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.getEnabledSecureTransportProtocols:()Ljava/util/Set;
ifnonnull 29
new java.util.LinkedHashSet
dup
invokespecial java.util.LinkedHashSet.<init>:()V
goto 30
StackMap locals:
StackMap stack: io.vertx.core.net.TCPSSLOptions
29: new java.util.LinkedHashSet
dup
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.getEnabledSecureTransportProtocols:()Ljava/util/Set;
invokespecial java.util.LinkedHashSet.<init>:(Ljava/util/Collection;)V
StackMap locals: io.vertx.core.net.TCPSSLOptions io.vertx.core.net.TCPSSLOptions
StackMap stack: io.vertx.core.net.TCPSSLOptions java.util.LinkedHashSet
30: putfield io.vertx.core.net.TCPSSLOptions.enabledSecureTransportProtocols:Ljava/util/Set;
31: aload 0
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.isTcpFastOpen:()Z
putfield io.vertx.core.net.TCPSSLOptions.tcpFastOpen:Z
32: aload 0
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.isTcpCork:()Z
putfield io.vertx.core.net.TCPSSLOptions.tcpCork:Z
33: aload 0
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.isTcpQuickAck:()Z
putfield io.vertx.core.net.TCPSSLOptions.tcpQuickAck:Z
34: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 35 0 this Lio/vertx/core/net/TCPSSLOptions;
0 35 1 other Lio/vertx/core/net/TCPSSLOptions;
MethodParameters:
Name Flags
other
public void <init>(io.vertx.core.json.JsonObject);
descriptor: (Lio/vertx/core/json/JsonObject;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokespecial io.vertx.core.net.NetworkOptions.<init>:(Lio/vertx/core/json/JsonObject;)V
1: aload 0
invokevirtual io.vertx.core.net.TCPSSLOptions.init:()V
2: aload 1
aload 0
invokestatic io.vertx.core.net.TCPSSLOptionsConverter.fromJson:(Ljava/lang/Iterable;Lio/vertx/core/net/TCPSSLOptions;)V
3: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lio/vertx/core/net/TCPSSLOptions;
0 4 1 json Lio/vertx/core/json/JsonObject;
MethodParameters:
Name Flags
json
public io.vertx.core.json.JsonObject toJson();
descriptor: ()Lio/vertx/core/json/JsonObject;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=1
start local 0 0: aload 0
invokespecial io.vertx.core.net.NetworkOptions.toJson:()Lio/vertx/core/json/JsonObject;
astore 1
start local 1 1: aload 0
aload 1
invokestatic io.vertx.core.net.TCPSSLOptionsConverter.toJson:(Lio/vertx/core/net/TCPSSLOptions;Lio/vertx/core/json/JsonObject;)V
2: aload 1
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lio/vertx/core/net/TCPSSLOptions;
1 3 1 json Lio/vertx/core/json/JsonObject;
private void init();
descriptor: ()V
flags: (0x0002) ACC_PRIVATE
Code:
stack=4, locals=1, args_size=1
start local 0 0: aload 0
iconst_1
putfield io.vertx.core.net.TCPSSLOptions.tcpNoDelay:Z
1: aload 0
iconst_0
putfield io.vertx.core.net.TCPSSLOptions.tcpKeepAlive:Z
2: aload 0
iconst_m1
putfield io.vertx.core.net.TCPSSLOptions.soLinger:I
3: aload 0
iconst_0
putfield io.vertx.core.net.TCPSSLOptions.idleTimeout:I
4: aload 0
getstatic io.vertx.core.net.TCPSSLOptions.DEFAULT_IDLE_TIMEOUT_TIME_UNIT:Ljava/util/concurrent/TimeUnit;
putfield io.vertx.core.net.TCPSSLOptions.idleTimeoutUnit:Ljava/util/concurrent/TimeUnit;
5: aload 0
iconst_0
putfield io.vertx.core.net.TCPSSLOptions.ssl:Z
6: aload 0
ldc 10
putfield io.vertx.core.net.TCPSSLOptions.sslHandshakeTimeout:J
7: aload 0
getstatic io.vertx.core.net.TCPSSLOptions.DEFAULT_SSL_HANDSHAKE_TIMEOUT_TIME_UNIT:Ljava/util/concurrent/TimeUnit;
putfield io.vertx.core.net.TCPSSLOptions.sslHandshakeTimeoutUnit:Ljava/util/concurrent/TimeUnit;
8: aload 0
new java.util.LinkedHashSet
dup
invokespecial java.util.LinkedHashSet.<init>:()V
putfield io.vertx.core.net.TCPSSLOptions.enabledCipherSuites:Ljava/util/Set;
9: aload 0
new java.util.ArrayList
dup
invokespecial java.util.ArrayList.<init>:()V
putfield io.vertx.core.net.TCPSSLOptions.crlPaths:Ljava/util/ArrayList;
10: aload 0
new java.util.ArrayList
dup
invokespecial java.util.ArrayList.<init>:()V
putfield io.vertx.core.net.TCPSSLOptions.crlValues:Ljava/util/ArrayList;
11: aload 0
iconst_0
putfield io.vertx.core.net.TCPSSLOptions.useAlpn:Z
12: aload 0
getstatic io.vertx.core.net.TCPSSLOptions.DEFAULT_SSL_ENGINE:Lio/vertx/core/net/SSLEngineOptions;
putfield io.vertx.core.net.TCPSSLOptions.sslEngineOptions:Lio/vertx/core/net/SSLEngineOptions;
13: aload 0
new java.util.LinkedHashSet
dup
getstatic io.vertx.core.net.TCPSSLOptions.DEFAULT_ENABLED_SECURE_TRANSPORT_PROTOCOLS:Ljava/util/List;
invokespecial java.util.LinkedHashSet.<init>:(Ljava/util/Collection;)V
putfield io.vertx.core.net.TCPSSLOptions.enabledSecureTransportProtocols:Ljava/util/Set;
14: aload 0
iconst_0
putfield io.vertx.core.net.TCPSSLOptions.tcpFastOpen:Z
15: aload 0
iconst_0
putfield io.vertx.core.net.TCPSSLOptions.tcpCork:Z
16: aload 0
iconst_0
putfield io.vertx.core.net.TCPSSLOptions.tcpQuickAck:Z
17: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 18 0 this Lio/vertx/core/net/TCPSSLOptions;
public boolean isTcpNoDelay();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.tcpNoDelay:Z
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
public io.vertx.core.net.TCPSSLOptions setTcpNoDelay(boolean);
descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
putfield io.vertx.core.net.TCPSSLOptions.tcpNoDelay:Z
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 tcpNoDelay Z
MethodParameters:
Name Flags
tcpNoDelay
public boolean isTcpKeepAlive();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.tcpKeepAlive:Z
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
public io.vertx.core.net.TCPSSLOptions setTcpKeepAlive(boolean);
descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
putfield io.vertx.core.net.TCPSSLOptions.tcpKeepAlive:Z
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 tcpKeepAlive Z
MethodParameters:
Name Flags
tcpKeepAlive
public int getSoLinger();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.soLinger:I
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
public io.vertx.core.net.TCPSSLOptions setSoLinger(int);
descriptor: (I)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: iload 1
ifge 2
iload 1
iconst_m1
if_icmpeq 2
1: new java.lang.IllegalArgumentException
dup
ldc "soLinger must be >= 0"
invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
2: StackMap locals:
StackMap stack:
aload 0
iload 1
putfield io.vertx.core.net.TCPSSLOptions.soLinger:I
3: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lio/vertx/core/net/TCPSSLOptions;
0 4 1 soLinger I
MethodParameters:
Name Flags
soLinger
public io.vertx.core.net.TCPSSLOptions setIdleTimeout(int);
descriptor: (I)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: iload 1
ifge 2
1: new java.lang.IllegalArgumentException
dup
ldc "idleTimeout must be >= 0"
invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
2: StackMap locals:
StackMap stack:
aload 0
iload 1
putfield io.vertx.core.net.TCPSSLOptions.idleTimeout:I
3: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lio/vertx/core/net/TCPSSLOptions;
0 4 1 idleTimeout I
MethodParameters:
Name Flags
idleTimeout
public int getIdleTimeout();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.idleTimeout:I
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
public io.vertx.core.net.TCPSSLOptions setIdleTimeoutUnit(java.util.concurrent.TimeUnit);
descriptor: (Ljava/util/concurrent/TimeUnit;)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield io.vertx.core.net.TCPSSLOptions.idleTimeoutUnit:Ljava/util/concurrent/TimeUnit;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 idleTimeoutUnit Ljava/util/concurrent/TimeUnit;
MethodParameters:
Name Flags
idleTimeoutUnit
public java.util.concurrent.TimeUnit getIdleTimeoutUnit();
descriptor: ()Ljava/util/concurrent/TimeUnit;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.idleTimeoutUnit:Ljava/util/concurrent/TimeUnit;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
public boolean isSsl();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.ssl:Z
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
public io.vertx.core.net.TCPSSLOptions setSsl(boolean);
descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
putfield io.vertx.core.net.TCPSSLOptions.ssl:Z
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 ssl Z
MethodParameters:
Name Flags
ssl
public io.vertx.core.net.KeyCertOptions getKeyCertOptions();
descriptor: ()Lio/vertx/core/net/KeyCertOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.keyCertOptions:Lio/vertx/core/net/KeyCertOptions;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
RuntimeVisibleAnnotations:
io.vertx.codegen.annotations.GenIgnore()
RuntimeVisibleTypeAnnotations:
METHOD_RETURN
io.vertx.codegen.annotations.GenIgnore()
public io.vertx.core.net.TCPSSLOptions setKeyCertOptions(io.vertx.core.net.KeyCertOptions);
descriptor: (Lio/vertx/core/net/KeyCertOptions;)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield io.vertx.core.net.TCPSSLOptions.keyCertOptions:Lio/vertx/core/net/KeyCertOptions;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 options Lio/vertx/core/net/KeyCertOptions;
RuntimeVisibleAnnotations:
io.vertx.codegen.annotations.GenIgnore()
RuntimeVisibleTypeAnnotations:
METHOD_RETURN
io.vertx.codegen.annotations.GenIgnore()
MethodParameters:
Name Flags
options
public io.vertx.core.net.JksOptions getKeyStoreOptions();
descriptor: ()Lio/vertx/core/net/JksOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.keyCertOptions:Lio/vertx/core/net/KeyCertOptions;
instanceof io.vertx.core.net.JksOptions
ifeq 1
aload 0
getfield io.vertx.core.net.TCPSSLOptions.keyCertOptions:Lio/vertx/core/net/KeyCertOptions;
checkcast io.vertx.core.net.JksOptions
goto 2
StackMap locals:
StackMap stack:
1: aconst_null
StackMap locals:
StackMap stack: io.vertx.core.net.JksOptions
2: areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lio/vertx/core/net/TCPSSLOptions;
public io.vertx.core.net.TCPSSLOptions setKeyStoreOptions(io.vertx.core.net.JksOptions);
descriptor: (Lio/vertx/core/net/JksOptions;)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield io.vertx.core.net.TCPSSLOptions.keyCertOptions:Lio/vertx/core/net/KeyCertOptions;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 options Lio/vertx/core/net/JksOptions;
MethodParameters:
Name Flags
options
public io.vertx.core.net.PfxOptions getPfxKeyCertOptions();
descriptor: ()Lio/vertx/core/net/PfxOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.keyCertOptions:Lio/vertx/core/net/KeyCertOptions;
instanceof io.vertx.core.net.PfxOptions
ifeq 1
aload 0
getfield io.vertx.core.net.TCPSSLOptions.keyCertOptions:Lio/vertx/core/net/KeyCertOptions;
checkcast io.vertx.core.net.PfxOptions
goto 2
StackMap locals:
StackMap stack:
1: aconst_null
StackMap locals:
StackMap stack: io.vertx.core.net.PfxOptions
2: areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lio/vertx/core/net/TCPSSLOptions;
public io.vertx.core.net.TCPSSLOptions setPfxKeyCertOptions(io.vertx.core.net.PfxOptions);
descriptor: (Lio/vertx/core/net/PfxOptions;)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield io.vertx.core.net.TCPSSLOptions.keyCertOptions:Lio/vertx/core/net/KeyCertOptions;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 options Lio/vertx/core/net/PfxOptions;
MethodParameters:
Name Flags
options
public io.vertx.core.net.PemKeyCertOptions getPemKeyCertOptions();
descriptor: ()Lio/vertx/core/net/PemKeyCertOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.keyCertOptions:Lio/vertx/core/net/KeyCertOptions;
instanceof io.vertx.core.net.PemKeyCertOptions
ifeq 1
aload 0
getfield io.vertx.core.net.TCPSSLOptions.keyCertOptions:Lio/vertx/core/net/KeyCertOptions;
checkcast io.vertx.core.net.PemKeyCertOptions
goto 2
StackMap locals:
StackMap stack:
1: aconst_null
StackMap locals:
StackMap stack: io.vertx.core.net.PemKeyCertOptions
2: areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lio/vertx/core/net/TCPSSLOptions;
public io.vertx.core.net.TCPSSLOptions setPemKeyCertOptions(io.vertx.core.net.PemKeyCertOptions);
descriptor: (Lio/vertx/core/net/PemKeyCertOptions;)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield io.vertx.core.net.TCPSSLOptions.keyCertOptions:Lio/vertx/core/net/KeyCertOptions;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 options Lio/vertx/core/net/PemKeyCertOptions;
MethodParameters:
Name Flags
options
public io.vertx.core.net.TrustOptions getTrustOptions();
descriptor: ()Lio/vertx/core/net/TrustOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.trustOptions:Lio/vertx/core/net/TrustOptions;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
public io.vertx.core.net.TCPSSLOptions setTrustOptions(io.vertx.core.net.TrustOptions);
descriptor: (Lio/vertx/core/net/TrustOptions;)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield io.vertx.core.net.TCPSSLOptions.trustOptions:Lio/vertx/core/net/TrustOptions;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 options Lio/vertx/core/net/TrustOptions;
MethodParameters:
Name Flags
options
public io.vertx.core.net.JksOptions getTrustStoreOptions();
descriptor: ()Lio/vertx/core/net/JksOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.trustOptions:Lio/vertx/core/net/TrustOptions;
instanceof io.vertx.core.net.JksOptions
ifeq 1
aload 0
getfield io.vertx.core.net.TCPSSLOptions.trustOptions:Lio/vertx/core/net/TrustOptions;
checkcast io.vertx.core.net.JksOptions
goto 2
StackMap locals:
StackMap stack:
1: aconst_null
StackMap locals:
StackMap stack: io.vertx.core.net.JksOptions
2: areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lio/vertx/core/net/TCPSSLOptions;
public io.vertx.core.net.TCPSSLOptions setTrustStoreOptions(io.vertx.core.net.JksOptions);
descriptor: (Lio/vertx/core/net/JksOptions;)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield io.vertx.core.net.TCPSSLOptions.trustOptions:Lio/vertx/core/net/TrustOptions;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 options Lio/vertx/core/net/JksOptions;
MethodParameters:
Name Flags
options
public io.vertx.core.net.PfxOptions getPfxTrustOptions();
descriptor: ()Lio/vertx/core/net/PfxOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.trustOptions:Lio/vertx/core/net/TrustOptions;
instanceof io.vertx.core.net.PfxOptions
ifeq 1
aload 0
getfield io.vertx.core.net.TCPSSLOptions.trustOptions:Lio/vertx/core/net/TrustOptions;
checkcast io.vertx.core.net.PfxOptions
goto 2
StackMap locals:
StackMap stack:
1: aconst_null
StackMap locals:
StackMap stack: io.vertx.core.net.PfxOptions
2: areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lio/vertx/core/net/TCPSSLOptions;
public io.vertx.core.net.TCPSSLOptions setPfxTrustOptions(io.vertx.core.net.PfxOptions);
descriptor: (Lio/vertx/core/net/PfxOptions;)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield io.vertx.core.net.TCPSSLOptions.trustOptions:Lio/vertx/core/net/TrustOptions;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 options Lio/vertx/core/net/PfxOptions;
MethodParameters:
Name Flags
options
public io.vertx.core.net.PemTrustOptions getPemTrustOptions();
descriptor: ()Lio/vertx/core/net/PemTrustOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.trustOptions:Lio/vertx/core/net/TrustOptions;
instanceof io.vertx.core.net.PemTrustOptions
ifeq 1
aload 0
getfield io.vertx.core.net.TCPSSLOptions.trustOptions:Lio/vertx/core/net/TrustOptions;
checkcast io.vertx.core.net.PemTrustOptions
goto 2
StackMap locals:
StackMap stack:
1: aconst_null
StackMap locals:
StackMap stack: io.vertx.core.net.PemTrustOptions
2: areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lio/vertx/core/net/TCPSSLOptions;
public io.vertx.core.net.TCPSSLOptions setPemTrustOptions(io.vertx.core.net.PemTrustOptions);
descriptor: (Lio/vertx/core/net/PemTrustOptions;)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield io.vertx.core.net.TCPSSLOptions.trustOptions:Lio/vertx/core/net/TrustOptions;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 options Lio/vertx/core/net/PemTrustOptions;
MethodParameters:
Name Flags
options
public io.vertx.core.net.TCPSSLOptions addEnabledCipherSuite(java.lang.String);
descriptor: (Ljava/lang/String;)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.enabledCipherSuites:Ljava/util/Set;
aload 1
invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
pop
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 suite Ljava/lang/String;
MethodParameters:
Name Flags
suite
public java.util.Set<java.lang.String> getEnabledCipherSuites();
descriptor: ()Ljava/util/Set;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.enabledCipherSuites:Ljava/util/Set;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
Signature: ()Ljava/util/Set<Ljava/lang/String;>;
public java.util.List<java.lang.String> getCrlPaths();
descriptor: ()Ljava/util/List;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.crlPaths:Ljava/util/ArrayList;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
Signature: ()Ljava/util/List<Ljava/lang/String;>;
public io.vertx.core.net.TCPSSLOptions addCrlPath(java.lang.String);
descriptor: (Ljava/lang/String;)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 1
ldc "No null crl accepted"
invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
pop
1: aload 0
getfield io.vertx.core.net.TCPSSLOptions.crlPaths:Ljava/util/ArrayList;
aload 1
invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
pop
2: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lio/vertx/core/net/TCPSSLOptions;
0 3 1 crlPath Ljava/lang/String;
Exceptions:
throws java.lang.NullPointerException
MethodParameters:
Name Flags
crlPath
public java.util.List<io.vertx.core.buffer.Buffer> getCrlValues();
descriptor: ()Ljava/util/List;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.crlValues:Ljava/util/ArrayList;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
Signature: ()Ljava/util/List<Lio/vertx/core/buffer/Buffer;>;
public io.vertx.core.net.TCPSSLOptions addCrlValue(io.vertx.core.buffer.Buffer);
descriptor: (Lio/vertx/core/buffer/Buffer;)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 1
ldc "No null crl accepted"
invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
pop
1: aload 0
getfield io.vertx.core.net.TCPSSLOptions.crlValues:Ljava/util/ArrayList;
aload 1
invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
pop
2: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lio/vertx/core/net/TCPSSLOptions;
0 3 1 crlValue Lio/vertx/core/buffer/Buffer;
Exceptions:
throws java.lang.NullPointerException
MethodParameters:
Name Flags
crlValue
public boolean isUseAlpn();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.useAlpn:Z
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
public io.vertx.core.net.TCPSSLOptions setUseAlpn(boolean);
descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
putfield io.vertx.core.net.TCPSSLOptions.useAlpn:Z
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 useAlpn Z
MethodParameters:
Name Flags
useAlpn
public io.vertx.core.net.SSLEngineOptions getSslEngineOptions();
descriptor: ()Lio/vertx/core/net/SSLEngineOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.sslEngineOptions:Lio/vertx/core/net/SSLEngineOptions;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
public io.vertx.core.net.TCPSSLOptions setSslEngineOptions(io.vertx.core.net.SSLEngineOptions);
descriptor: (Lio/vertx/core/net/SSLEngineOptions;)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield io.vertx.core.net.TCPSSLOptions.sslEngineOptions:Lio/vertx/core/net/SSLEngineOptions;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 sslEngineOptions Lio/vertx/core/net/SSLEngineOptions;
MethodParameters:
Name Flags
sslEngineOptions
public io.vertx.core.net.JdkSSLEngineOptions getJdkSslEngineOptions();
descriptor: ()Lio/vertx/core/net/JdkSSLEngineOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.sslEngineOptions:Lio/vertx/core/net/SSLEngineOptions;
instanceof io.vertx.core.net.JdkSSLEngineOptions
ifeq 1
aload 0
getfield io.vertx.core.net.TCPSSLOptions.sslEngineOptions:Lio/vertx/core/net/SSLEngineOptions;
checkcast io.vertx.core.net.JdkSSLEngineOptions
goto 2
StackMap locals:
StackMap stack:
1: aconst_null
StackMap locals:
StackMap stack: io.vertx.core.net.JdkSSLEngineOptions
2: areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lio/vertx/core/net/TCPSSLOptions;
public io.vertx.core.net.TCPSSLOptions setJdkSslEngineOptions(io.vertx.core.net.JdkSSLEngineOptions);
descriptor: (Lio/vertx/core/net/JdkSSLEngineOptions;)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.setSslEngineOptions:(Lio/vertx/core/net/SSLEngineOptions;)Lio/vertx/core/net/TCPSSLOptions;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
0 1 1 sslEngineOptions Lio/vertx/core/net/JdkSSLEngineOptions;
MethodParameters:
Name Flags
sslEngineOptions
public io.vertx.core.net.OpenSSLEngineOptions getOpenSslEngineOptions();
descriptor: ()Lio/vertx/core/net/OpenSSLEngineOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.sslEngineOptions:Lio/vertx/core/net/SSLEngineOptions;
instanceof io.vertx.core.net.OpenSSLEngineOptions
ifeq 1
aload 0
getfield io.vertx.core.net.TCPSSLOptions.sslEngineOptions:Lio/vertx/core/net/SSLEngineOptions;
checkcast io.vertx.core.net.OpenSSLEngineOptions
goto 2
StackMap locals:
StackMap stack:
1: aconst_null
StackMap locals:
StackMap stack: io.vertx.core.net.OpenSSLEngineOptions
2: areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lio/vertx/core/net/TCPSSLOptions;
public io.vertx.core.net.TCPSSLOptions setOpenSslEngineOptions(io.vertx.core.net.OpenSSLEngineOptions);
descriptor: (Lio/vertx/core/net/OpenSSLEngineOptions;)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.setSslEngineOptions:(Lio/vertx/core/net/SSLEngineOptions;)Lio/vertx/core/net/TCPSSLOptions;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
0 1 1 sslEngineOptions Lio/vertx/core/net/OpenSSLEngineOptions;
MethodParameters:
Name Flags
sslEngineOptions
public io.vertx.core.net.TCPSSLOptions setEnabledSecureTransportProtocols(java.util.Set<java.lang.String>);
descriptor: (Ljava/util/Set;)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield io.vertx.core.net.TCPSSLOptions.enabledSecureTransportProtocols:Ljava/util/Set;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 enabledSecureTransportProtocols Ljava/util/Set<Ljava/lang/String;>;
Signature: (Ljava/util/Set<Ljava/lang/String;>;)Lio/vertx/core/net/TCPSSLOptions;
MethodParameters:
Name Flags
enabledSecureTransportProtocols
public io.vertx.core.net.TCPSSLOptions addEnabledSecureTransportProtocol(java.lang.String);
descriptor: (Ljava/lang/String;)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.enabledSecureTransportProtocols:Ljava/util/Set;
aload 1
invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
pop
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 protocol Ljava/lang/String;
MethodParameters:
Name Flags
protocol
public io.vertx.core.net.TCPSSLOptions removeEnabledSecureTransportProtocol(java.lang.String);
descriptor: (Ljava/lang/String;)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.enabledSecureTransportProtocols:Ljava/util/Set;
aload 1
invokeinterface java.util.Set.remove:(Ljava/lang/Object;)Z
pop
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 protocol Ljava/lang/String;
MethodParameters:
Name Flags
protocol
public boolean isTcpFastOpen();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.tcpFastOpen:Z
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
public io.vertx.core.net.TCPSSLOptions setTcpFastOpen(boolean);
descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
putfield io.vertx.core.net.TCPSSLOptions.tcpFastOpen:Z
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 tcpFastOpen Z
MethodParameters:
Name Flags
tcpFastOpen
public boolean isTcpCork();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.tcpCork:Z
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
public io.vertx.core.net.TCPSSLOptions setTcpCork(boolean);
descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
putfield io.vertx.core.net.TCPSSLOptions.tcpCork:Z
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 tcpCork Z
MethodParameters:
Name Flags
tcpCork
public boolean isTcpQuickAck();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.tcpQuickAck:Z
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
public io.vertx.core.net.TCPSSLOptions setTcpQuickAck(boolean);
descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
putfield io.vertx.core.net.TCPSSLOptions.tcpQuickAck:Z
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 tcpQuickAck Z
MethodParameters:
Name Flags
tcpQuickAck
public java.util.Set<java.lang.String> getEnabledSecureTransportProtocols();
descriptor: ()Ljava/util/Set;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
start local 0 0: new java.util.LinkedHashSet
dup
aload 0
getfield io.vertx.core.net.TCPSSLOptions.enabledSecureTransportProtocols:Ljava/util/Set;
invokespecial java.util.LinkedHashSet.<init>:(Ljava/util/Collection;)V
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
Signature: ()Ljava/util/Set<Ljava/lang/String;>;
public long getSslHandshakeTimeout();
descriptor: ()J
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.sslHandshakeTimeout:J
lreturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
public io.vertx.core.net.TCPSSLOptions setSslHandshakeTimeout(long);
descriptor: (J)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=3, args_size=2
start local 0 start local 1 0: lload 1
lconst_0
lcmp
ifge 2
1: new java.lang.IllegalArgumentException
dup
ldc "sslHandshakeTimeout must be >= 0"
invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
2: StackMap locals:
StackMap stack:
aload 0
lload 1
putfield io.vertx.core.net.TCPSSLOptions.sslHandshakeTimeout:J
3: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lio/vertx/core/net/TCPSSLOptions;
0 4 1 sslHandshakeTimeout J
MethodParameters:
Name Flags
sslHandshakeTimeout
public io.vertx.core.net.TCPSSLOptions setSslHandshakeTimeoutUnit(java.util.concurrent.TimeUnit);
descriptor: (Ljava/util/concurrent/TimeUnit;)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
putfield io.vertx.core.net.TCPSSLOptions.sslHandshakeTimeoutUnit:Ljava/util/concurrent/TimeUnit;
1: aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/net/TCPSSLOptions;
0 2 1 sslHandshakeTimeoutUnit Ljava/util/concurrent/TimeUnit;
MethodParameters:
Name Flags
sslHandshakeTimeoutUnit
public java.util.concurrent.TimeUnit getSslHandshakeTimeoutUnit();
descriptor: ()Ljava/util/concurrent/TimeUnit;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield io.vertx.core.net.TCPSSLOptions.sslHandshakeTimeoutUnit:Ljava/util/concurrent/TimeUnit;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
public io.vertx.core.net.TCPSSLOptions setLogActivity(boolean);
descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
invokespecial io.vertx.core.net.NetworkOptions.setLogActivity:(Z)Lio/vertx/core/net/NetworkOptions;
checkcast io.vertx.core.net.TCPSSLOptions
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
0 1 1 logEnabled Z
MethodParameters:
Name Flags
logEnabled
public io.vertx.core.net.TCPSSLOptions setSendBufferSize(int);
descriptor: (I)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
invokespecial io.vertx.core.net.NetworkOptions.setSendBufferSize:(I)Lio/vertx/core/net/NetworkOptions;
checkcast io.vertx.core.net.TCPSSLOptions
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
0 1 1 sendBufferSize I
MethodParameters:
Name Flags
sendBufferSize
public io.vertx.core.net.TCPSSLOptions setReceiveBufferSize(int);
descriptor: (I)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
invokespecial io.vertx.core.net.NetworkOptions.setReceiveBufferSize:(I)Lio/vertx/core/net/NetworkOptions;
checkcast io.vertx.core.net.TCPSSLOptions
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
0 1 1 receiveBufferSize I
MethodParameters:
Name Flags
receiveBufferSize
public io.vertx.core.net.TCPSSLOptions setReuseAddress(boolean);
descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
invokespecial io.vertx.core.net.NetworkOptions.setReuseAddress:(Z)Lio/vertx/core/net/NetworkOptions;
checkcast io.vertx.core.net.TCPSSLOptions
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
0 1 1 reuseAddress Z
MethodParameters:
Name Flags
reuseAddress
public io.vertx.core.net.TCPSSLOptions setTrafficClass(int);
descriptor: (I)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
invokespecial io.vertx.core.net.NetworkOptions.setTrafficClass:(I)Lio/vertx/core/net/NetworkOptions;
checkcast io.vertx.core.net.TCPSSLOptions
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
0 1 1 trafficClass I
MethodParameters:
Name Flags
trafficClass
public io.vertx.core.net.TCPSSLOptions setReusePort(boolean);
descriptor: (Z)Lio/vertx/core/net/TCPSSLOptions;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
iload 1
invokespecial io.vertx.core.net.NetworkOptions.setReusePort:(Z)Lio/vertx/core/net/NetworkOptions;
checkcast io.vertx.core.net.TCPSSLOptions
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lio/vertx/core/net/TCPSSLOptions;
0 1 1 reusePort Z
MethodParameters:
Name Flags
reusePort
public io.vertx.core.net.NetworkOptions setReceiveBufferSize(int);
descriptor: (I)Lio/vertx/core/net/NetworkOptions;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
iload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.setReceiveBufferSize:(I)Lio/vertx/core/net/TCPSSLOptions;
areturn
LocalVariableTable:
Start End Slot Name Signature
public io.vertx.core.net.NetworkOptions setReusePort(boolean);
descriptor: (Z)Lio/vertx/core/net/NetworkOptions;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
iload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.setReusePort:(Z)Lio/vertx/core/net/TCPSSLOptions;
areturn
LocalVariableTable:
Start End Slot Name Signature
public io.vertx.core.net.NetworkOptions setReuseAddress(boolean);
descriptor: (Z)Lio/vertx/core/net/NetworkOptions;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
iload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.setReuseAddress:(Z)Lio/vertx/core/net/TCPSSLOptions;
areturn
LocalVariableTable:
Start End Slot Name Signature
public io.vertx.core.net.NetworkOptions setSendBufferSize(int);
descriptor: (I)Lio/vertx/core/net/NetworkOptions;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
iload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.setSendBufferSize:(I)Lio/vertx/core/net/TCPSSLOptions;
areturn
LocalVariableTable:
Start End Slot Name Signature
public io.vertx.core.net.NetworkOptions setTrafficClass(int);
descriptor: (I)Lio/vertx/core/net/NetworkOptions;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
iload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.setTrafficClass:(I)Lio/vertx/core/net/TCPSSLOptions;
areturn
LocalVariableTable:
Start End Slot Name Signature
public io.vertx.core.net.NetworkOptions setLogActivity(boolean);
descriptor: (Z)Lio/vertx/core/net/NetworkOptions;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
iload 1
invokevirtual io.vertx.core.net.TCPSSLOptions.setLogActivity:(Z)Lio/vertx/core/net/TCPSSLOptions;
areturn
LocalVariableTable:
Start End Slot Name Signature
}
SourceFile: "TCPSSLOptions.java"
InnerClasses:
public abstract Entry = java.util.Map$Entry of java.util.Map
RuntimeVisibleAnnotations:
io.vertx.codegen.annotations.DataObject(generateConverter = true, publicConverter = false)