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 SummaryFields Modifier and Type Field Description protected List<AssertionType>assertionprotected List<AttributeType>attribute
 - 
Constructor SummaryConstructors Constructor Description EntityAttributes()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddAssertion(AssertionType attributeType)voidaddAttribute(AttributeType attributeType)List<AssertionType>getAssertion()List<AttributeType>getAttribute()voidremoveAssertion(AttributeType attributeType)voidremoveAttribute(AttributeType attributeType)
 
- 
- 
- 
Field Detail- 
attributeprotected List<AttributeType> attribute 
 - 
assertionprotected List<AssertionType> assertion 
 
- 
 - 
Method Detail- 
getAttributepublic List<AttributeType> getAttribute() 
 - 
addAttributepublic void addAttribute(AttributeType attributeType) 
 - 
removeAttributepublic void removeAttribute(AttributeType attributeType) 
 - 
getAssertionpublic List<AssertionType> getAssertion() 
 - 
addAssertionpublic void addAssertion(AssertionType attributeType) 
 - 
removeAssertionpublic void removeAssertion(AttributeType attributeType) 
 
- 
 
-