@Generated(value="OracleSDKGenerator", comments="API Version: 20170115") public final class SessionPersistenceConfigurationDetails extends Object
The configuration details for implementing session persistence. Session persistence enables the Load Balancing Service to direct any number of requests that originate from a single logical client to a single backend web server. For more information, see Session Persistence.
To disable session persistence on a running load balancer, use the updateBackendSet
operation and specify "null" for the SessionPersistenceConfigurationDetails
object.
Example: SessionPersistenceConfigurationDetails: null
Note: Objects should always be created or deserialized using the SessionPersistenceConfigurationDetails.Builder
. This model distinguishes fields that are null
because they are unset from fields that are explicitly set to null
. This is done in the setter methods of the SessionPersistenceConfigurationDetails.Builder
, which maintain a set of all explicitly set fields called __explicitlySet__
. The hashCode()
and equals(Object)
methods are implemented to take __explicitlySet__
into account. The constructor, on the other hand, does not set __explicitlySet__
(since the constructor cannot distinguish explicit null
from unset null
).
Modifier and Type | Class and Description |
---|---|
static class |
SessionPersistenceConfigurationDetails.Builder |
Constructor and Description |
---|
SessionPersistenceConfigurationDetails(String cookieName,
Boolean disableFallback)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static SessionPersistenceConfigurationDetails.Builder |
builder()
Create a new builder.
|
boolean |
equals(Object o) |
Set<String> |
get__explicitlySet__() |
String |
getCookieName()
The name of the cookie used to detect a session initiated by the backend server.
|
Boolean |
getDisableFallback()
Whether the load balancer is prevented from directing traffic from a persistent session client to a different backend server if the original server is unavailable.
|
int |
hashCode() |
String |
toString() |
@ConstructorProperties(value={"cookieName","disableFallback"}) @Deprecated public SessionPersistenceConfigurationDetails(String cookieName, Boolean disableFallback)
public static SessionPersistenceConfigurationDetails.Builder builder()
Create a new builder.
public String getCookieName()
The name of the cookie used to detect a session initiated by the backend server. Use ’*’ to specify that any cookie set by the backend causes the session to persist.
Example: example_cookie
public Boolean getDisableFallback()
Whether the load balancer is prevented from directing traffic from a persistent session client to a different backend server if the original server is unavailable. Defaults to false.
Example: false
Copyright © 2016–2019. All rights reserved.