Package oracle.security.xs
Class AttributeValue
- java.lang.Object
-
- oracle.security.xs.AttributeValue
-
public class AttributeValue extends java.lang.ObjectThis class provides a name/value pair that is stored in session namespace. Both name and value areString.
-
-
Constructor Summary
Constructors Constructor Description AttributeValue(java.lang.String attributeName, java.lang.String attributeValue)Creates anAttibuteValuewith the specified attribute name and attribute value.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()Returns the attribute name.java.lang.StringgetValue()Returns the attribute value.voidsetValue(java.lang.String value)Sets the attribute valuejava.lang.StringtoString()
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Returns the attribute name.- Returns:
- name of the attribute
-
getValue
public java.lang.String getValue()
Returns the attribute value.- Returns:
- value of the attribute
-
setValue
public void setValue(java.lang.String value)
Sets the attribute value- Parameters:
value- , the given value to set
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-