public abstract class AuthenticationContextDeclaration
extends oracle.security.xmlsec.util.XMLElement
Modifier | Constructor and Description |
---|---|
|
AuthenticationContextDeclaration(org.w3c.dom.Document owner, java.lang.String nsURI)
Creates a new
AuthenticationContextDeclaration instance. |
protected |
AuthenticationContextDeclaration(org.w3c.dom.Document owner, java.lang.String nsURI, java.lang.String localName)
Creates a new
AuthenticationContextDeclaration instance. |
|
AuthenticationContextDeclaration(org.w3c.dom.Element element)
Creates a new
AuthenticationContextDeclaration instance from the given Element node. |
|
AuthenticationContextDeclaration(org.w3c.dom.Element element, java.lang.String systemId)
Creates a new
AuthenticationContextDeclaration instance from the given Element node. |
Modifier and Type | Method and Description |
---|---|
void |
addExtension(Extension extn)
Adds a schema extension.
|
AuthnMethod |
getAuthnMethod()
Returns the authentication mechanisms used by the authentication authority.
|
java.util.List |
getExtensions()
Returns the schema extensions.
|
GoverningAgreements |
getGoverningAgreements()
Returns the governing business agreements used by the authentication authority.
|
java.lang.String |
getID()
Returns the identifier attribute for this
AuthenticationContextDeclaration . |
Identification |
getIdentification()
Returns the identification mechanism used by the authentication authority.
|
OperationalProtection |
getOperationalProtection()
Returns the operational procedures used by the authentication authority.
|
TechnicalProtection |
getTechnicalProtection()
Returns the technical protection mechanisms used by the authentication authority.
|
void |
setAuthnMethod(AuthnMethod method)
Sets the authentication mechanisms used by the authentication authority.
|
void |
setGoverningAgreements(GoverningAgreements ga)
Sets the governing business agreements used by the authentication authority.
|
void |
setID(java.lang.String id)
Sets the identifier attribute for this
AuthenticationContextDeclaration . |
void |
setIdentification(Identification iden)
Sets the identification mechanism used by the authentication authority.
|
void |
setOperationalProtection(OperationalProtection opProt)
Sets the operational procedures used by the authentication authority.
|
void |
setTechnicalProtection(TechnicalProtection techProt)
Sets the technical protection mechanisms used by the authentication authority.
|
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
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
public AuthenticationContextDeclaration(org.w3c.dom.Element element) throws org.w3c.dom.DOMException
AuthenticationContextDeclaration
instance from the given Element node.element
- An AuthenticationContextDeclaration element.org.w3c.dom.DOMException
public AuthenticationContextDeclaration(org.w3c.dom.Element element, java.lang.String systemId) throws org.w3c.dom.DOMException
AuthenticationContextDeclaration
instance from the given Element node.element
- An AuthenticationContextDeclaration element.systemId
- The URI string system ID for the AuthenticationContextDeclaration
.org.w3c.dom.DOMException
public AuthenticationContextDeclaration(org.w3c.dom.Document owner, java.lang.String nsURI) throws org.w3c.dom.DOMException
AuthenticationContextDeclaration
instance. This constructor is for use in subclass for extension of the AuthenticationContextDeclaration element.owner
- The owner document of the new AuthenticationContextDeclaration.nsURI
- The namespace URI in which the new AuthenticationContextDeclaration is to be created.org.w3c.dom.DOMException
protected AuthenticationContextDeclaration(org.w3c.dom.Document owner, java.lang.String nsURI, java.lang.String localName) throws org.w3c.dom.DOMException
AuthenticationContextDeclaration
instance. This constructor is for use in subclass for extension of the AuthenticationContextDeclaration element.owner
- The owner document of the new AuthenticationContextDeclaration.nsURI
- The namespace URI in which the new AuthenticationContextDeclaration is to be created.localName
- The localName of the element represented by the class that extends this class.org.w3c.dom.DOMException
public void setID(java.lang.String id)
AuthenticationContextDeclaration
.id
- A unique String value.public java.lang.String getID()
AuthenticationContextDeclaration
.null
if none has been set.public void setIdentification(Identification iden)
iden
- The Identification
object.public Identification getIdentification()
Identification
object or null
if not present.public void setTechnicalProtection(TechnicalProtection techProt)
techProt
- The TechnicalProtection
object.public TechnicalProtection getTechnicalProtection()
TechnicalProtection
object or null
if not present.public void setOperationalProtection(OperationalProtection opProt)
opProt
- The OperationalProtection
object.public OperationalProtection getOperationalProtection()
OperationalProtection
object or null
if not present.public void setAuthnMethod(AuthnMethod method)
method
- The AuthnMethod
object.public AuthnMethod getAuthnMethod()
AuthnMethod
object or null
if not present.public void setGoverningAgreements(GoverningAgreements ga)
ga
- The GoverningAgreements
object.public GoverningAgreements getGoverningAgreements()
GoverningAgreements
object or null
if not present.public void addExtension(Extension extn)
extn
- The Extension
object.public java.util.List getExtensions()
List
of Extension
objects or null
if not present.