org.opensaml.saml2.metadata
Interface SPSSODescriptor

All Superinterfaces:
org.opensaml.xml.AttributeExtensibleXMLObject, CacheableSAMLObject, RoleDescriptor, SAMLObject, SignableSAMLObject, org.opensaml.xml.signature.SignableXMLObject, SSODescriptor, TimeBoundSAMLObject, org.opensaml.xml.validation.ValidatingXMLObject, org.opensaml.xml.XMLObject
All Known Implementing Classes:
SPSSODescriptorImpl

public interface SPSSODescriptor
extends SSODescriptor

SAML 2.0 Metadata SPSSODescriptorType


Field Summary
static java.lang.String AUTH_REQUESTS_SIGNED_ATTRIB_NAME
          "AuthnRequestsSigned" attribute's local name
static java.lang.String DEFAULT_ELEMENT_LOCAL_NAME
          Element name, no namespace
static javax.xml.namespace.QName DEFAULT_ELEMENT_NAME
          Default element name
static java.lang.String TYPE_LOCAL_NAME
          Local name of the XSI type
static javax.xml.namespace.QName TYPE_NAME
          QName of the XSI type
static java.lang.String WANT_ASSERTIONS_SIGNED_ATTRIB_NAME
          "WantAssertionsSigned" attribute's local 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
 java.util.List<AssertionConsumerService> getAssertionConsumerServices()
          Gets an list of assertion consumer service Endpoints for this service.
 java.util.List<AttributeConsumingService> getAttributeConsumingServices()
          Gets an list of attribute consuming service Endpoints for this service.
 AssertionConsumerService getDefaultAssertionConsumerService()
          Gets the default assertion consumer service or null if no service is marked as the default.
 AttributeConsumingService getDefaultAttributeConsumingService()
          Gets the default attribute consumer service or null if no service is marked as the default.
 java.lang.Boolean getWantAssertionsSigned()
          Gets whether this service wants assertions signed.
 org.opensaml.xml.schema.XSBooleanValue getWantAssertionsSignedXSBoolean()
          Gets whether this service wants assertions signed.
 java.lang.Boolean isAuthnRequestsSigned()
          Gets whether this service signs AuthN requests.
 org.opensaml.xml.schema.XSBooleanValue isAuthnRequestsSignedXSBoolean()
          Gets whether this service signs AuthN requests.
 void setAuthnRequestsSigned(java.lang.Boolean newIsSigned)
          Sets whether this service signs AuthN requests.
 void setAuthnRequestsSigned(org.opensaml.xml.schema.XSBooleanValue newIsSigned)
          Sets whether this service signs AuthN requests.
 void setWantAssertionsSigned(java.lang.Boolean newWantAssestionSigned)
          Sets whether this service wants assertions signed.
 void setWantAssertionsSigned(org.opensaml.xml.schema.XSBooleanValue newWantAssestionSigned)
          Sets whether this service wants assertions signed.
 
Methods inherited from interface org.opensaml.saml2.metadata.SSODescriptor
getArtifactResolutionServices, 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, getNamespaces, getNoNamespaceSchemaLocation, getOrderedChildren, getParent, getSchemaLocation, getSchemaType, hasChildren, hasParent, releaseChildrenDOM, releaseDOM, releaseParentDOM, removeNamespace, resolveID, resolveIDFromRoot, setDOM, setNoNamespaceSchemaLocation, setParent, setSchemaLocation
 
Methods inherited from interface org.opensaml.xml.AttributeExtensibleXMLObject
getUnknownAttributes
 

Field Detail

DEFAULT_ELEMENT_LOCAL_NAME

static final java.lang.String DEFAULT_ELEMENT_LOCAL_NAME
Element name, no namespace

See Also:
Constant Field Values

DEFAULT_ELEMENT_NAME

static final javax.xml.namespace.QName DEFAULT_ELEMENT_NAME
Default element name


TYPE_LOCAL_NAME

static final java.lang.String TYPE_LOCAL_NAME
Local name of the XSI type

See Also:
Constant Field Values

TYPE_NAME

static final javax.xml.namespace.QName TYPE_NAME
QName of the XSI type


AUTH_REQUESTS_SIGNED_ATTRIB_NAME

static final java.lang.String AUTH_REQUESTS_SIGNED_ATTRIB_NAME
"AuthnRequestsSigned" attribute's local name

See Also:
Constant Field Values

WANT_ASSERTIONS_SIGNED_ATTRIB_NAME

static final java.lang.String WANT_ASSERTIONS_SIGNED_ATTRIB_NAME
"WantAssertionsSigned" attribute's local name

See Also:
Constant Field Values
Method Detail

isAuthnRequestsSigned

java.lang.Boolean isAuthnRequestsSigned()
Gets whether this service signs AuthN requests.

Returns:
true of this service signs requests, false if not

isAuthnRequestsSignedXSBoolean

org.opensaml.xml.schema.XSBooleanValue isAuthnRequestsSignedXSBoolean()
Gets whether this service signs AuthN requests.

Returns:
true of this service signs requests, false if not

setAuthnRequestsSigned

void setAuthnRequestsSigned(java.lang.Boolean newIsSigned)
Sets whether this service signs AuthN requests. Boolean values will be marshalled to either "true" or "false".

Parameters:
newIsSigned - true of this service signs requests, false if not

setAuthnRequestsSigned

void setAuthnRequestsSigned(org.opensaml.xml.schema.XSBooleanValue newIsSigned)
Sets whether this service signs AuthN requests.

Parameters:
newIsSigned - true of this service signs requests, false if not

getWantAssertionsSigned

java.lang.Boolean getWantAssertionsSigned()
Gets whether this service wants assertions signed.

Returns:
true if this service wants assertions signed, false if not

getWantAssertionsSignedXSBoolean

org.opensaml.xml.schema.XSBooleanValue getWantAssertionsSignedXSBoolean()
Gets whether this service wants assertions signed.

Returns:
true if this service wants assertions signed, false if not

setWantAssertionsSigned

void setWantAssertionsSigned(java.lang.Boolean newWantAssestionSigned)
Sets whether this service wants assertions signed. Boolean values will be marshalled to either "true" or "false".

Parameters:
newWantAssestionSigned - true if this service wants assertions signed, false if not

setWantAssertionsSigned

void setWantAssertionsSigned(org.opensaml.xml.schema.XSBooleanValue newWantAssestionSigned)
Sets whether this service wants assertions signed.

Parameters:
newWantAssestionSigned - true if this service wants assertions signed, false if not

getAssertionConsumerServices

java.util.List<AssertionConsumerService> getAssertionConsumerServices()
Gets an list of assertion consumer service Endpoints for this service.

Returns:
list of assertion consumer service Endpoints for this service

getDefaultAssertionConsumerService

AssertionConsumerService getDefaultAssertionConsumerService()
Gets the default assertion consumer service or null if no service is marked as the default.

Returns:
default assertion consumer service or null if no service is marked as the default

getAttributeConsumingServices

java.util.List<AttributeConsumingService> getAttributeConsumingServices()
Gets an list of attribute consuming service Endpoints for this service.

Returns:
list of attribute consuming service Endpoints for this service

getDefaultAttributeConsumingService

AttributeConsumingService getDefaultAttributeConsumingService()
Gets the default attribute consumer service or null if no service is marked as the default.

Returns:
default attribute consumer service or null if no service is marked as the default


Copyright © 2006-2012 Internet2. All Rights Reserved.