public enum SessionModeConfig extends Enum<SessionModeConfig>
Session.getAcknowledgeMode()
SessionMode setting.Enum Constant and Description |
---|
AUTO
Auto-acknowledge session mode.
|
CLIENT
Client-acknowledge session mode.
|
DUPS_OK
Dups-OK-acknowledge session mode.
|
Modifier and Type | Method and Description |
---|---|
int |
getMode()
Returns the session mode setting for this configuration.
|
static SessionModeConfig |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SessionModeConfig[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SessionModeConfig AUTO
public static final SessionModeConfig CLIENT
public static final SessionModeConfig DUPS_OK
public static SessionModeConfig[] values()
for (SessionModeConfig c : SessionModeConfig.values()) System.out.println(c);
public static SessionModeConfig valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getMode()
Session.getAcknowledgeMode()
Copyright © 2025 Open Identity Platform Community. All rights reserved.