Class AttributeBean
- java.lang.Object
-
- org.apache.wss4j.common.saml.bean.AttributeBean
-
public class AttributeBean extends Object
Class SamlAttribute represents an instance of a SAML attribute.
-
-
Constructor Summary
Constructors Constructor Description AttributeBean()Constructor SamlAttribute creates a new SamlAttribute instance.AttributeBean(String simpleName, String qualifiedName, List<Object> attributeValues)Constructor SamlAttribute creates a new SamlAttribute instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddAttributeValue(Object attributeValue)booleanequals(Object o)List<Object>getAttributeValues()Method getAttributeValues returns the attributeValues of this SamlAttribute object.StringgetNameFormat()Method getNameFormat returns the nameFormat of this SamlAttribute objectStringgetQualifiedName()Method getQualifiedName returns the qualifiedName of this SamlAttribute object.StringgetSimpleName()Method getSimpleName returns the simpleName of this SamlAttribute object.inthashCode()voidsetAttributeValues(List<Object> attributeValues)Method setAttributeValues sets the attributeValues of this SamlAttribute object.voidsetNameFormat(String nameFormat)Method setNameFormat sets the nameFormat of this SamlAttribute object.voidsetQualifiedName(String qualifiedName)Method setQualifiedName sets the qualifiedName of this SamlAttribute object.voidsetSimpleName(String simpleName)Method setSimpleName sets the simpleName of this SamlAttribute object.
-
-
-
Method Detail
-
getSimpleName
public String getSimpleName()
Method getSimpleName returns the simpleName of this SamlAttribute object.- Returns:
- the simpleName (type String) of this SamlAttribute object.
-
setSimpleName
public void setSimpleName(String simpleName)
Method setSimpleName sets the simpleName of this SamlAttribute object.- Parameters:
simpleName- the simpleName of this SamlAttribute object.
-
getNameFormat
public String getNameFormat()
Method getNameFormat returns the nameFormat of this SamlAttribute object- Returns:
- the nameFormat of this SamlAttribute object
-
setNameFormat
public void setNameFormat(String nameFormat)
Method setNameFormat sets the nameFormat of this SamlAttribute object.- Parameters:
nameFormat- the nameFormat of this SamlAttribute object.
-
getQualifiedName
public String getQualifiedName()
Method getQualifiedName returns the qualifiedName of this SamlAttribute object.- Returns:
- the qualifiedName (type String) of this SamlAttribute object.
-
setQualifiedName
public void setQualifiedName(String qualifiedName)
Method setQualifiedName sets the qualifiedName of this SamlAttribute object.- Parameters:
qualifiedName- the qualifiedName of this SamlAttribute object.
-
getAttributeValues
public List<Object> getAttributeValues()
Method getAttributeValues returns the attributeValues of this SamlAttribute object.- Returns:
- the attributeValues (type List) of this SamlAttribute object.
-
setAttributeValues
public void setAttributeValues(List<Object> attributeValues)
Method setAttributeValues sets the attributeValues of this SamlAttribute object.- Parameters:
attributeValues- the attributeValues of this SamlAttribute object.
-
addAttributeValue
public void addAttributeValue(Object attributeValue)
-
-