Package org.keycloak.dom.saml.v2.mdattr
Class EntityAttributes
- java.lang.Object
-
- org.keycloak.dom.saml.v2.mdattr.EntityAttributes
-
- All Implemented Interfaces:
Serializable
public class EntityAttributes extends Object implements Serializable
*Java class for EntityAttributes complex type.
The following schema fragment specifies the expected content contained within this class.
<element name="EntityAttributes" type="mdattr:EntityAttributesType"/> <complexType name="EntityAttributesType"> <choice maxOccurs="unbounded"> <element ref="saml:Attribute"/> <element ref="saml:Assertion"/> </sequence> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<AssertionType>
assertion
protected List<AttributeType>
attribute
-
Constructor Summary
Constructors Constructor Description EntityAttributes()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addAssertion(AssertionType attributeType)
void
addAttribute(AttributeType attributeType)
List<AssertionType>
getAssertion()
List<AttributeType>
getAttribute()
void
removeAssertion(AttributeType attributeType)
void
removeAttribute(AttributeType attributeType)
-
-
-
Field Detail
-
attribute
protected List<AttributeType> attribute
-
assertion
protected List<AssertionType> assertion
-
-
Method Detail
-
getAttribute
public List<AttributeType> getAttribute()
-
addAttribute
public void addAttribute(AttributeType attributeType)
-
removeAttribute
public void removeAttribute(AttributeType attributeType)
-
getAssertion
public List<AssertionType> getAssertion()
-
addAssertion
public void addAssertion(AssertionType attributeType)
-
removeAssertion
public void removeAssertion(AttributeType attributeType)
-
-