Package org.keycloak.dom.saml.v2.mdui
Class UIInfoType
- java.lang.Object
-
- org.keycloak.dom.saml.v2.mdui.UIInfoType
-
- All Implemented Interfaces:
Serializable
public class UIInfoType extends Object implements Serializable
*Java class for UIInfoType complex type.
The following schema fragment specifies the expected content contained within this class.
<element name="UIInfo" type="mdui:UIInfoType"/> <complexType name="UIInfoType"> <choice minOccurs="0" maxOccurs="unbounded"> <element ref="mdui:DisplayName"/> <element ref="mdui:Description"/> <element ref="mdui:Keywords"/> <element ref="mdui:Logo"/> <element ref="mdui:InformationURL"/> <element ref="mdui:PrivacyStatementURL"/> <any namespace="##other" processContents="lax"/> </choice> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<LocalizedNameType>descriptionprotected List<LocalizedNameType>displayNameprotected List<LocalizedURIType>informationURLprotected List<KeywordsType>keywordsprotected List<LogoType>logoprotected List<LocalizedURIType>privacyStatementURL
-
Constructor Summary
Constructors Constructor Description UIInfoType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddDescription(LocalizedNameType description)voidaddDisplayName(LocalizedNameType displayName)voidaddInformationURL(LocalizedURIType informationURL)voidaddKeywords(KeywordsType keywords)voidaddLogo(LogoType logo)voidaddPrivacyStatementURL(LocalizedURIType privacyStatementURL)List<LocalizedNameType>getDescription()List<LocalizedNameType>getDisplayName()List<LocalizedURIType>getInformationURL()List<KeywordsType>getKeywords()List<LogoType>getLogo()List<LocalizedURIType>getPrivacyStatementURL()
-
-
-
Field Detail
-
displayName
protected List<LocalizedNameType> displayName
-
description
protected List<LocalizedNameType> description
-
keywords
protected List<KeywordsType> keywords
-
informationURL
protected List<LocalizedURIType> informationURL
-
privacyStatementURL
protected List<LocalizedURIType> privacyStatementURL
-
-
Method Detail
-
addDisplayName
public void addDisplayName(LocalizedNameType displayName)
-
addDescription
public void addDescription(LocalizedNameType description)
-
addKeywords
public void addKeywords(KeywordsType keywords)
-
addInformationURL
public void addInformationURL(LocalizedURIType informationURL)
-
addPrivacyStatementURL
public void addPrivacyStatementURL(LocalizedURIType privacyStatementURL)
-
addLogo
public void addLogo(LogoType logo)
-
getDisplayName
public List<LocalizedNameType> getDisplayName()
-
getDescription
public List<LocalizedNameType> getDescription()
-
getKeywords
public List<KeywordsType> getKeywords()
-
getInformationURL
public List<LocalizedURIType> getInformationURL()
-
getPrivacyStatementURL
public List<LocalizedURIType> getPrivacyStatementURL()
-
-