public class SAMLAttributeInfo extends Object
| Modifier and Type | Method and Description | 
|---|---|
void | 
addAttributeValue(String value)
Adds a  
String value to the end of this instance's values. | 
String | 
getAttributeName()
return name of a SAML Attribute 
 | 
String | 
getAttributeNamespace()
return namespace of a SAML Attribute 
 | 
Collection<String> | 
getAttributeValues()
Return attribute values, it's a  
Collection of String and in the 
 order they were added. | 
void | 
setAttributeName(String name,
                String namespace)
Set the name and namespace of this  
SAMLAttributeInfo instance. | 
void | 
setAttributeValues(Collection<String> values)
Set attribute's values. 
 | 
public String getAttributeName()
public String getAttributeNamespace()
public void setAttributeName(String name, String namespace)
SAMLAttributeInfo instance.
 If name or namespace is null, returns without updating the instance.name - attribute namenamespace - attribute namespacepublic void setAttributeValues(Collection<String> values)
Collection adds no values to this instance. 
 Collection elements that are null are added as empty strings.values - attribute valuespublic void addAttributeValue(String value)
String value to the end of this instance's values.
 A null value is added as an empty String.value - attribute value to be addedpublic Collection<String> getAttributeValues()
Collection of String and in the 
 order they were added.