public enum SocketPolicy extends java.lang.Enum<SocketPolicy>
Enum Constant and Description |
---|
DISCONNECT_AFTER_REQUEST
Close connection after reading the request but before writing the response.
|
DISCONNECT_AT_END
Close the socket after the response.
|
DISCONNECT_AT_START
Request immediate close of connection without even reading the request.
|
FAIL_HANDSHAKE
Don't trust the client during the SSL handshake.
|
KEEP_OPEN
Keep the socket open after the response.
|
NO_RESPONSE
Don't response to the request but keep the socket open.
|
SHUTDOWN_INPUT_AT_END
Shutdown the socket input after sending the response.
|
SHUTDOWN_OUTPUT_AT_END
Shutdown the socket output after sending the response.
|
UPGRADE_TO_SSL_AT_END
Wrap the socket with SSL at the completion of this request/response pair.
|
Modifier and Type | Method and Description |
---|---|
static SocketPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SocketPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SocketPolicy KEEP_OPEN
public static final SocketPolicy DISCONNECT_AT_END
public static final SocketPolicy UPGRADE_TO_SSL_AT_END
public static final SocketPolicy DISCONNECT_AT_START
public static final SocketPolicy DISCONNECT_AFTER_REQUEST
public static final SocketPolicy FAIL_HANDSHAKE
public static final SocketPolicy SHUTDOWN_INPUT_AT_END
public static final SocketPolicy SHUTDOWN_OUTPUT_AT_END
public static final SocketPolicy NO_RESPONSE
public static SocketPolicy[] values()
for (SocketPolicy c : SocketPolicy.values()) System.out.println(c);
public static SocketPolicy valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2014. All Rights Reserved.