Package oracle.security.xs
Class NamespaceValue
- java.lang.Object
-
- oracle.security.xs.NamespaceValue
-
public class NamespaceValue extends java.lang.ObjectThis class represents a namespace and its attributes, which are used in session namespace operations.
-
-
Constructor Summary
Constructors Constructor Description NamespaceValue(java.lang.String namespace, java.util.Collection<AttributeValue> attributes)Creates a namespace with the specified name and attributes.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Collection<AttributeValue>getAttributes()Retrieves the list of attributes.java.lang.StringgetNamespace()Retrieves the namespace name.voidsetAttributes(java.util.List<AttributeValue> attributes)Sets the list of attributesvoidsetNamespace(java.lang.String namespace)set namespace namejava.lang.StringtoString()
-
-
-
Constructor Detail
-
NamespaceValue
public NamespaceValue(java.lang.String namespace, java.util.Collection<AttributeValue> attributes)Creates a namespace with the specified name and attributes.- Parameters:
namespace-attributes-
-
-
Method Detail
-
setNamespace
public void setNamespace(java.lang.String namespace)
set namespace name- Parameters:
namespace-
-
getNamespace
public java.lang.String getNamespace()
Retrieves the namespace name.- Returns:
- the namespace name
-
setAttributes
public void setAttributes(java.util.List<AttributeValue> attributes)
Sets the list of attributes- Parameters:
attributes-
-
getAttributes
public java.util.Collection<AttributeValue> getAttributes()
Retrieves the list of attributes.- Returns:
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-