public interface SessionStateSupport
| Modifier and Type | Method and Description |
|---|---|
Set<String> |
getAttributeNames()
Returns an unmodifiable Set of the session attribute name.
|
Map<String,com.fasterxml.jackson.databind.JsonNode> |
getAttributes()
Returns an unmodifiable Map containing the session attributes.
|
com.fasterxml.jackson.databind.JsonNode |
getAttributeValue(String name)
Returns the attribute value for the given name or null if not present.
|
void |
removeAttribute(String name)
Removes a session attribute.
|
void |
setAttribute(String name,
com.fasterxml.jackson.databind.JsonNode value)
Sets a session attribute.
|
Map<String,com.fasterxml.jackson.databind.JsonNode> getAttributes()
setAttribute(java.lang.String, com.fasterxml.jackson.databind.JsonNode)
and removeAttribute(java.lang.String)will not be reflected in the map returned from this method.Set<String> getAttributeNames()
setAttribute(java.lang.String, com.fasterxml.jackson.databind.JsonNode)
and removeAttribute(java.lang.String)will not be reflected in the map returned from this method.com.fasterxml.jackson.databind.JsonNode getAttributeValue(String name)
name - the attribute namevoid setAttribute(String name, com.fasterxml.jackson.databind.JsonNode value)
SessionStateSupport class level documentation.
name - the attribute namevalue - the attribute valuevoid removeAttribute(String name)
name - the attribute nameCopyright 2023 Ping Identity Corp. All rights reserved.