Package oracle.security.xs
Interface SessionNamespaceAttribute
-
public interface SessionNamespaceAttributeThis interface represents a name/value pair that is stored as an attribute in the session namespace (SessionNamespace).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDefaultValue()Returns the default value of the attributejava.lang.StringgetName()Returns the attribute name.java.lang.StringgetValue()Returns the attribute value.java.lang.StringtoString()Returns a string representation of theSessionNamespaceAttribute.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the attribute name.- Returns:
- name of the attribute
-
getValue
java.lang.String getValue()
Returns the attribute value.- Returns:
- value of the attribute
-
getDefaultValue
java.lang.String getDefaultValue()
Returns the default value of the attribute- Returns:
- default value of the attribute
-
toString
java.lang.String toString()
Returns a string representation of theSessionNamespaceAttribute.- Overrides:
toStringin classjava.lang.Object- Returns:
- a string representation of the
SessionNamespaceAttribute
-
-