Skip navigation links

Oracle Fusion Middleware SAML 2.0 Java API Reference for Oracle Security Developer Tools
11g Release 1 (11.1.1)

E10676-03


oracle.security.xmlsec.saml2.metadata
Class SSODescriptor

java.lang.Object
  extended by oracle.security.xmlsec.util.XMLNode
      extended by oracle.security.xmlsec.util.XMLElement
          extended by oracle.security.xmlsec.saml2.metadata.Descriptor
              extended by oracle.security.xmlsec.saml2.metadata.RoleDescriptor
                  extended by oracle.security.xmlsec.saml2.metadata.SSODescriptor

Direct Known Subclasses:
IDPSSODescriptor, SPSSODescriptor

public abstract class SSODescriptor
extends RoleDescriptor

Represents a SSODescriptor metadata element.


Field Summary

 

Fields inherited from class oracle.security.xmlsec.util.XMLNode
node, systemId

 

Constructor Summary
  SSODescriptor(org.w3c.dom.Document owner)
          Creates a new SSODescriptor instance.
protected SSODescriptor(org.w3c.dom.Document owner, java.lang.String nsURI, java.lang.String localName)
          Creates a new SSODescriptor instance.
  SSODescriptor(org.w3c.dom.Element element)
          Creates a new SSODescriptor instance from the given Element node.
  SSODescriptor(org.w3c.dom.Element element, java.lang.String systemId)
          Creates a new SSODescriptor instance from the given Element node.

 

Method Summary
 void addArtifactResolutionService(ArtifactResolutionService ars)
          Adds an artifact resolution service.
 void addManageNameIDService(ManageNameIDService mnid)
          Adds a ManageNameID service.
 void addNameIDFormat(NameIDFormat nid)
          Adds a NameID format.
 void addSingleLogoutService(SingleLogoutService sls)
          Adds a single logout service.
 java.util.List getArtifactResolutionServices()
          Gets the list of artifact resolution services.
 java.util.List getManageNameIDServices()
          Gets the list of ManageNameID services.
 java.util.List getNameIDFormats()
          Gets the list of NameID formats
 java.util.List getSingleLogoutServices()
          Gets the list of single logout services.

 

Methods inherited from class oracle.security.xmlsec.saml2.metadata.RoleDescriptor
addContactPerson, addKeyDescriptor, getContactPersons, getErrorURL, getKeyDescriptors, getOrganization, getProtocolSupportEnumeration, setErrorURL, setOrganization, setProtocolSupportEnumeration

 

Methods inherited from class oracle.security.xmlsec.saml2.metadata.Descriptor
addSignature, addSignature, clearSignature, getCacheDuration, getExtensions, getID, getSignature, getValidUntil, isSigned, setCacheDuration, setExtensions, setID, setValidUntil, sign, sign, verify, verify

 

Methods inherited from class oracle.security.xmlsec.util.XMLElement
addNSPrefixAttr, addNSPrefixAttr, addNSPrefixAttrDefault, addNSPrefixAttrDefault, getAttribute, getAttributeNode, getAttributeNodeNS, getAttributeNS, getChildElementsByTagName, getChildElementsByTagName, getChildElementsByTagNameNS, getChildElementsByTagNameNS, getDefaultNSPrefix, getElement, getElementsByTagName, getElementsByTagNameNS, getTagName, hasAttribute, hasAttributeNS, removeAttribute, removeAttributeNode, removeAttributeNS, setAttribute, setAttributeNode, setAttributeNodeNS, setAttributeNS, setDefaultNSPrefix

 

Methods inherited from class oracle.security.xmlsec.util.XMLNode
appendChild, appendChild, appendTo, cloneNode, getAttributes, getChildNodes, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNode, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, getSystemId, hasAttributes, hasChildNodes, insertBefore, insertBefore, isSupported, normalize, removeChild, removeChild, replaceChild, replaceChild, setNodeValue, setPrefix, setSystemId, toBytesXML, toStringXML

 

Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

 

Constructor Detail

SSODescriptor

public SSODescriptor(org.w3c.dom.Element element)
              throws org.w3c.dom.DOMException
Creates a new SSODescriptor instance from the given Element node.
Parameters:
element - An SSODescriptor element.
Throws:
org.w3c.dom.DOMException

SSODescriptor

public SSODescriptor(org.w3c.dom.Element element,
                     java.lang.String systemId)
              throws org.w3c.dom.DOMException
Creates a new SSODescriptor instance from the given Element node.
Parameters:
element - An SSODescriptor element.
systemId - The URI string system ID for the SSODescriptor.
Throws:
org.w3c.dom.DOMException

SSODescriptor

public SSODescriptor(org.w3c.dom.Document owner)
              throws org.w3c.dom.DOMException
Creates a new SSODescriptor instance.
Parameters:
owner - The owner document of the new SSODescriptor.
Throws:
org.w3c.dom.DOMException

SSODescriptor

protected SSODescriptor(org.w3c.dom.Document owner,
                        java.lang.String nsURI,
                        java.lang.String localName)
                 throws org.w3c.dom.DOMException
Creates a new SSODescriptor instance. This constructor is for use in subclass for extension of the SSODescriptor element.
Parameters:
owner - The owner document of the new SSODescriptor.
nsURI - The namespace URI in which the new SSODescriptor is to be created.
localName - The localName of the element represented by the class that extends this class.
Throws:
org.w3c.dom.DOMException

Method Detail

addArtifactResolutionService

public void addArtifactResolutionService(ArtifactResolutionService ars)
Adds an artifact resolution service.
Parameters:
ars - A ArtifactResolutionService object.

getArtifactResolutionServices

public java.util.List getArtifactResolutionServices()
Gets the list of artifact resolution services.
Returns:
A List of ArtifactResolutionService objects or null if none were found.

addSingleLogoutService

public void addSingleLogoutService(SingleLogoutService sls)
Adds a single logout service.
Parameters:
sls - A SingleLogoutService object.

getSingleLogoutServices

public java.util.List getSingleLogoutServices()
Gets the list of single logout services.
Returns:
A List of SingleLogoutService objects null if none were found.

addManageNameIDService

public void addManageNameIDService(ManageNameIDService mnid)
Adds a ManageNameID service.
Parameters:
mnid - A ManageNameIDService object.

getManageNameIDServices

public java.util.List getManageNameIDServices()
Gets the list of ManageNameID services.
Returns:
A List of ManageNameIDService objects null if none were found.

addNameIDFormat

public void addNameIDFormat(NameIDFormat nid)
Adds a NameID format.
Parameters:
nid - The NameIDFormat Node.

getNameIDFormats

public java.util.List getNameIDFormats()
Gets the list of NameID formats
Returns:
A List of NameIDFormat objects null if none were found.

Skip navigation links

Oracle Fusion Middleware SAML 2.0 Java API Reference for Oracle Security Developer Tools
11g Release 1 (11.1.1)

E10676-03


Copyright © 2005, 2011 , Oracle. All rights reserved.