Class SSODescriptorType
- java.lang.Object
-
- org.certificateservices.messages.saml2.metadata.jaxb.RoleDescriptorType
-
- org.certificateservices.messages.saml2.metadata.jaxb.SSODescriptorType
-
- Direct Known Subclasses:
IDPSSODescriptorType,SPSSODescriptorType
public abstract class SSODescriptorType extends RoleDescriptorType
Java class for SSODescriptorType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SSODescriptorType"> <complexContent> <extension base="{urn:oasis:names:tc:SAML:2.0:metadata}RoleDescriptorType"> <sequence> <element ref="{urn:oasis:names:tc:SAML:2.0:metadata}ArtifactResolutionService" maxOccurs="unbounded" minOccurs="0"/> <element ref="{urn:oasis:names:tc:SAML:2.0:metadata}SingleLogoutService" maxOccurs="unbounded" minOccurs="0"/> <element ref="{urn:oasis:names:tc:SAML:2.0:metadata}ManageNameIDService" maxOccurs="unbounded" minOccurs="0"/> <element ref="{urn:oasis:names:tc:SAML:2.0:metadata}NameIDFormat" maxOccurs="unbounded" minOccurs="0"/> </sequence> <anyAttribute processContents='lax' namespace='##other'/> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<IndexedEndpointType>artifactResolutionServiceprotected java.util.List<EndpointType>manageNameIDServiceprotected java.util.List<java.lang.String>nameIDFormatprotected java.util.List<EndpointType>singleLogoutService-
Fields inherited from class org.certificateservices.messages.saml2.metadata.jaxb.RoleDescriptorType
cacheDuration, contactPerson, errorURL, extensions, id, keyDescriptor, organization, protocolSupportEnumeration, signature, validUntil
-
-
Constructor Summary
Constructors Constructor Description SSODescriptorType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<IndexedEndpointType>getArtifactResolutionService()Gets the value of the artifactResolutionService property.java.util.List<EndpointType>getManageNameIDService()Gets the value of the manageNameIDService property.java.util.List<java.lang.String>getNameIDFormat()Gets the value of the nameIDFormat property.java.util.List<EndpointType>getSingleLogoutService()Gets the value of the singleLogoutService property.-
Methods inherited from class org.certificateservices.messages.saml2.metadata.jaxb.RoleDescriptorType
getCacheDuration, getContactPerson, getErrorURL, getExtensions, getID, getKeyDescriptor, getOrganization, getOtherAttributes, getProtocolSupportEnumeration, getSignature, getValidUntil, setCacheDuration, setErrorURL, setExtensions, setID, setOrganization, setSignature, setValidUntil
-
-
-
-
Field Detail
-
artifactResolutionService
protected java.util.List<IndexedEndpointType> artifactResolutionService
-
singleLogoutService
protected java.util.List<EndpointType> singleLogoutService
-
manageNameIDService
protected java.util.List<EndpointType> manageNameIDService
-
nameIDFormat
protected java.util.List<java.lang.String> nameIDFormat
-
-
Method Detail
-
getArtifactResolutionService
public java.util.List<IndexedEndpointType> getArtifactResolutionService()
Gets the value of the artifactResolutionService 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 artifactResolutionService property.For example, to add a new item, do as follows:
getArtifactResolutionService().add(newItem);Objects of the following type(s) are allowed in the list
IndexedEndpointType
-
getSingleLogoutService
public java.util.List<EndpointType> getSingleLogoutService()
Gets the value of the singleLogoutService 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 singleLogoutService property.For example, to add a new item, do as follows:
getSingleLogoutService().add(newItem);Objects of the following type(s) are allowed in the list
EndpointType
-
getManageNameIDService
public java.util.List<EndpointType> getManageNameIDService()
Gets the value of the manageNameIDService 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 manageNameIDService property.For example, to add a new item, do as follows:
getManageNameIDService().add(newItem);Objects of the following type(s) are allowed in the list
EndpointType
-
getNameIDFormat
public java.util.List<java.lang.String> getNameIDFormat()
Gets the value of the nameIDFormat 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 nameIDFormat property.For example, to add a new item, do as follows:
getNameIDFormat().add(newItem);Objects of the following type(s) are allowed in the list
String
-
-