org.opensaml.saml2.metadata
Interface IDPSSODescriptor

All Superinterfaces:
AttributeExtensibleXMLObject, CacheableSAMLObject, RoleDescriptor, SAMLObject, SignableSAMLObject, SignableXMLObject, SSODescriptor, TimeBoundSAMLObject, ValidatingXMLObject, XMLObject
All Known Implementing Classes:
IDPSSODescriptorImpl

public interface IDPSSODescriptor
extends SSODescriptor

SAML 2.0 Metadata IDPSSODescriptorType


Field Summary
static String DEFAULT_ELEMENT_LOCAL_NAME
          Local name, no namespace
static QName DEFAULT_ELEMENT_NAME
          Default element name
static String TYPE_LOCAL_NAME
          Local name of the XSI type
static QName TYPE_NAME
          QName of the XSI type
static String WANT_AUTHN_REQ_SIGNED_ATTRIB_NAME
          "WantAuthnRequestSigned" attribute name
 
Fields inherited from interface org.opensaml.saml2.metadata.RoleDescriptor
ERROR_URL_ATTRIB_NAME, ID_ATTRIB_NAME, PROTOCOL_ENUMERATION_ATTRIB_NAME
 
Fields inherited from interface org.opensaml.saml2.common.TimeBoundSAMLObject
VALID_UNTIL_ATTRIB_NAME, VALID_UNTIL_ATTRIB_QNAME
 
Fields inherited from interface org.opensaml.saml2.common.CacheableSAMLObject
CACHE_DURATION_ATTRIB_NAME, CACHE_DURATION_ATTRIB_QNAME
 
Method Summary
 List<AssertionIDRequestService> getAssertionIDRequestServices()
          Gets the list of assertion ID request services.
 List<AttributeProfile> getAttributeProfiles()
          Gets the list of attribute profiles supported by this IdP.
 List<Attribute> getAttributes()
          Gets the list of attributes supported by this IdP.
 List<NameIDMappingService> getNameIDMappingServices()
          Gets the list of NameID mapping services for this service.
 List<SingleSignOnService> getSingleSignOnServices()
          Gets the list of single sign on services for this IDP.
 Boolean getWantAuthnRequestsSigned()
          Checks if the IDP SSO service wants authentication requests signed.
 XSBooleanValue getWantAuthnRequestsSignedXSBoolean()
          Checks if the IDP SSO service wants authentication requests signed.
 void setWantAuthnRequestsSigned(Boolean newWantSigned)
          Sets whether the IDP SSO service wants authentication requests signed.
 void setWantAuthnRequestsSigned(XSBooleanValue newWantSigned)
          Sets whether the IDP SSO service wants authentication requests signed.
 
Methods inherited from interface org.opensaml.saml2.metadata.SSODescriptor
getArtifactResolutionServices, getDefaultArtifactResolutionService, getDefaultArtificateResolutionService, getManageNameIDServices, getNameIDFormats, getSingleLogoutServices
 
Methods inherited from interface org.opensaml.saml2.metadata.RoleDescriptor
addSupportedProtocol, getContactPersons, getEndpoints, getEndpoints, getErrorURL, getExtensions, getID, getKeyDescriptors, getOrganization, getSupportedProtocols, isSupportedProtocol, removeAllSupportedProtocols, removeSupportedProtocol, removeSupportedProtocols, setErrorURL, setExtensions, setID, setOrganization
 
Methods inherited from interface org.opensaml.common.SignableSAMLObject
getSignatureReferenceID
 
Methods inherited from interface org.opensaml.xml.signature.SignableXMLObject
getSignature, isSigned, setSignature
 
Methods inherited from interface org.opensaml.saml2.common.TimeBoundSAMLObject
getValidUntil, isValid, setValidUntil
 
Methods inherited from interface org.opensaml.saml2.common.CacheableSAMLObject
getCacheDuration, setCacheDuration
 
Methods inherited from interface org.opensaml.xml.validation.ValidatingXMLObject
deregisterValidator, getValidators, registerValidator, validate
 
Methods inherited from interface org.opensaml.xml.XMLObject
addNamespace, detach, getDOM, getElementQName, getIDIndex, getNamespaceManager, getNamespaces, getNoNamespaceSchemaLocation, getOrderedChildren, getParent, getSchemaLocation, getSchemaType, hasChildren, hasParent, isNil, isNilXSBoolean, releaseChildrenDOM, releaseDOM, releaseParentDOM, removeNamespace, resolveID, resolveIDFromRoot, setDOM, setNil, setNil, setNoNamespaceSchemaLocation, setParent, setSchemaLocation
 
Methods inherited from interface org.opensaml.xml.AttributeExtensibleXMLObject
getUnknownAttributes
 

Field Detail

DEFAULT_ELEMENT_LOCAL_NAME

static final String DEFAULT_ELEMENT_LOCAL_NAME
Local name, no namespace

See Also:
Constant Field Values

DEFAULT_ELEMENT_NAME

static final QName DEFAULT_ELEMENT_NAME
Default element name


TYPE_LOCAL_NAME

static final String TYPE_LOCAL_NAME
Local name of the XSI type

See Also:
Constant Field Values

TYPE_NAME

static final QName TYPE_NAME
QName of the XSI type


WANT_AUTHN_REQ_SIGNED_ATTRIB_NAME

static final String WANT_AUTHN_REQ_SIGNED_ATTRIB_NAME
"WantAuthnRequestSigned" attribute name

See Also:
Constant Field Values
Method Detail

getWantAuthnRequestsSigned

Boolean getWantAuthnRequestsSigned()
Checks if the IDP SSO service wants authentication requests signed.

Returns:
true is signing is desired, false if not

getWantAuthnRequestsSignedXSBoolean

XSBooleanValue getWantAuthnRequestsSignedXSBoolean()
Checks if the IDP SSO service wants authentication requests signed.

Returns:
true is signing is desired, false if not

setWantAuthnRequestsSigned

void setWantAuthnRequestsSigned(Boolean newWantSigned)
Sets whether the IDP SSO service wants authentication requests signed. Boolean values will be marshalled to either "true" or "false".

Parameters:
newWantSigned - true if request should be signed, false if not

setWantAuthnRequestsSigned

void setWantAuthnRequestsSigned(XSBooleanValue newWantSigned)
Sets whether the IDP SSO service wants authentication requests signed.

Parameters:
newWantSigned - true if request should be signed, false if not

getSingleSignOnServices

List<SingleSignOnService> getSingleSignOnServices()
Gets the list of single sign on services for this IDP.

Returns:
list of single sign on services

getNameIDMappingServices

List<NameIDMappingService> getNameIDMappingServices()
Gets the list of NameID mapping services for this service.

Returns:
the list of NameID mapping services for this service

getAssertionIDRequestServices

List<AssertionIDRequestService> getAssertionIDRequestServices()
Gets the list of assertion ID request services.

Returns:
assertion ID request services

getAttributeProfiles

List<AttributeProfile> getAttributeProfiles()
Gets the list of attribute profiles supported by this IdP.

Returns:
attribute profiles supported by this IdP

getAttributes

List<Attribute> getAttributes()
Gets the list of attributes supported by this IdP.

Returns:
attributes supported by this IdP


Copyright © 1999-2013. All Rights Reserved.