Interface XMLSecStartElement
-
- All Superinterfaces:
javax.xml.stream.events.StartElement
,javax.xml.stream.events.XMLEvent
,XMLSecEvent
,javax.xml.stream.XMLStreamConstants
- All Known Implementing Classes:
XMLSecStartElementImpl
public interface XMLSecStartElement extends XMLSecEvent, javax.xml.stream.events.StartElement
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addAttribute(XMLSecAttribute xmlSecAttribute)
void
addNamespace(XMLSecNamespace xmlSecNamespace)
XMLSecStartElement
asStartElement()
void
getAttributesFromCurrentScope(java.util.List<XMLSecAttribute> comparableAttributeList)
XMLSecNamespace
getElementNamespace()
void
getNamespacesFromCurrentScope(java.util.List<XMLSecNamespace> comparableNamespaceList)
java.util.List<XMLSecAttribute>
getOnElementDeclaredAttributes()
java.util.List<XMLSecNamespace>
getOnElementDeclaredNamespaces()
-
Methods inherited from interface javax.xml.stream.events.StartElement
getAttributeByName, getAttributes, getName, getNamespaceContext, getNamespaces, getNamespaceURI
-
Methods inherited from interface javax.xml.stream.events.XMLEvent
getEventType, getLocation, getSchemaType, isAttribute, isCharacters, isEndDocument, isEndElement, isEntityReference, isNamespace, isProcessingInstruction, isStartDocument, isStartElement, writeAsEncodedUnicode
-
Methods inherited from interface org.apache.xml.security.stax.ext.stax.XMLSecEvent
asCharacters, asEndElement, getDocumentLevel, getElementPath, getElementPath, getParentXMLSecStartElement, getStartElementAtLevel, setParentXMLSecStartElement
-
-
-
-
Method Detail
-
getElementNamespace
XMLSecNamespace getElementNamespace()
-
getNamespacesFromCurrentScope
void getNamespacesFromCurrentScope(java.util.List<XMLSecNamespace> comparableNamespaceList)
-
getOnElementDeclaredNamespaces
java.util.List<XMLSecNamespace> getOnElementDeclaredNamespaces()
-
addNamespace
void addNamespace(XMLSecNamespace xmlSecNamespace)
-
getAttributesFromCurrentScope
void getAttributesFromCurrentScope(java.util.List<XMLSecAttribute> comparableAttributeList)
-
getOnElementDeclaredAttributes
java.util.List<XMLSecAttribute> getOnElementDeclaredAttributes()
-
addAttribute
void addAttribute(XMLSecAttribute xmlSecAttribute)
-
asStartElement
XMLSecStartElement asStartElement()
- Specified by:
asStartElement
in interfacejavax.xml.stream.events.XMLEvent
- Specified by:
asStartElement
in interfaceXMLSecEvent
-
-