Class AffiliationDescriptorType
- java.lang.Object
-
- org.keycloak.dom.saml.v2.metadata.TypeWithOtherAttributes
-
- org.keycloak.dom.saml.v2.metadata.AffiliationDescriptorType
-
public class AffiliationDescriptorType extends TypeWithOtherAttributes
Java class for AffiliationDescriptorType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="AffiliationDescriptorType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://www.w3.org/2000/09/xmldsig#}Signature" minOccurs="0"/> <element ref="{urn:oasis:names:tc:SAML:2.0:metadata}Extensions" minOccurs="0"/> <element ref="{urn:oasis:names:tc:SAML:2.0:metadata}AffiliateMember" maxOccurs="unbounded"/> <element ref="{urn:oasis:names:tc:SAML:2.0:metadata}KeyDescriptor" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="affiliationOwnerID" use="required" type="{urn:oasis:names:tc:SAML:2.0:metadata}entityIDType" /> <attribute name="validUntil" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> <attribute name="cacheDuration" type="{http://www.w3.org/2001/XMLSchema}duration" /> <attribute name="ID" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<String>affiliateMemberprotected StringaffiliationOwnerIDprotected DurationcacheDurationprotected ExtensionsTypeextensionsprotected Stringidprotected List<KeyDescriptorType>keyDescriptorprotected SignatureTypesignatureprotected XMLGregorianCalendarvalidUntil-
Fields inherited from class org.keycloak.dom.saml.v2.metadata.TypeWithOtherAttributes
otherAttributes
-
-
Constructor Summary
Constructors Constructor Description AffiliationDescriptorType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getAffiliateMember()Gets the value of the affiliateMember property.StringgetAffiliationOwnerID()Gets the value of the affiliationOwnerID property.DurationgetCacheDuration()Gets the value of the cacheDuration property.ExtensionsTypegetExtensions()Gets the value of the extensions property.StringgetID()Gets the value of the id property.List<KeyDescriptorType>getKeyDescriptor()Gets the value of the keyDescriptor property.SignatureTypegetSignature()Gets the value of the signature property.XMLGregorianCalendargetValidUntil()Gets the value of the validUntil property.voidsetAffiliationOwnerID(String value)Sets the value of the affiliationOwnerID property.voidsetCacheDuration(Duration value)Sets the value of the cacheDuration property.voidsetExtensions(ExtensionsType value)Sets the value of the extensions property.voidsetID(String value)Sets the value of the id property.voidsetSignature(SignatureType value)Sets the value of the signature property.voidsetValidUntil(XMLGregorianCalendar value)Sets the value of the validUntil property.-
Methods inherited from class org.keycloak.dom.saml.v2.metadata.TypeWithOtherAttributes
addOtherAttribute, getOtherAttributes, removeOtherAttribute
-
-
-
-
Field Detail
-
signature
protected SignatureType signature
-
extensions
protected ExtensionsType extensions
-
keyDescriptor
protected List<KeyDescriptorType> keyDescriptor
-
affiliationOwnerID
protected String affiliationOwnerID
-
validUntil
protected XMLGregorianCalendar validUntil
-
cacheDuration
protected Duration cacheDuration
-
id
protected String id
-
-
Method Detail
-
getSignature
public SignatureType getSignature()
Gets the value of the signature property.- Returns:
- possible object is
SignatureType
-
setSignature
public void setSignature(SignatureType value)
Sets the value of the signature property.- Parameters:
value- allowed object isSignatureType
-
getExtensions
public ExtensionsType getExtensions()
Gets the value of the extensions property.- Returns:
- possible object is
ExtensionsType
-
setExtensions
public void setExtensions(ExtensionsType value)
Sets the value of the extensions property.- Parameters:
value- allowed object isExtensionsType
-
getAffiliateMember
public List<String> getAffiliateMember()
Gets the value of the affiliateMember property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the affiliateMember property.For example, to add a new item, do as follows:
getAffiliateMember().add(newItem);
Objects of the following type(s) are allowed in the list
String
-
getKeyDescriptor
public List<KeyDescriptorType> getKeyDescriptor()
Gets the value of the keyDescriptor property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the keyDescriptor property.For example, to add a new item, do as follows:
getKeyDescriptor().add(newItem);
Objects of the following type(s) are allowed in the list
KeyDescriptorType
-
getAffiliationOwnerID
public String getAffiliationOwnerID()
Gets the value of the affiliationOwnerID property.- Returns:
- possible object is
String
-
setAffiliationOwnerID
public void setAffiliationOwnerID(String value)
Sets the value of the affiliationOwnerID property.- Parameters:
value- allowed object isString
-
getValidUntil
public XMLGregorianCalendar getValidUntil()
Gets the value of the validUntil property.- Returns:
- possible object is
XMLGregorianCalendar
-
setValidUntil
public void setValidUntil(XMLGregorianCalendar value)
Sets the value of the validUntil property.- Parameters:
value- allowed object isXMLGregorianCalendar
-
getCacheDuration
public Duration getCacheDuration()
Gets the value of the cacheDuration property.- Returns:
- possible object is
Duration
-
setCacheDuration
public void setCacheDuration(Duration value)
Sets the value of the cacheDuration property.- Parameters:
value- allowed object isDuration
-
-