Modifier and Type | Method and Description |
---|---|
OMFactory |
OMInformationItem.getOMFactory()
Get the
OMFactory that created this information item. |
OMFactory |
OMMetaFactory.getOMFactory()
Get the OM factory instance for the XML infoset model.
|
static OMFactory |
OMAbstractFactory.getOMFactory()
Get the default OM factory instance.
|
Modifier and Type | Method and Description |
---|---|
static OMXMLParserWrapper |
OMXMLBuilderFactory.createOMBuilder(OMFactory omFactory,
InputStream in)
Create an object model builder that reads an XML document from the provided input stream
using a specified object model factory and with the default parser configuration defined by
StAXParserConfiguration.DEFAULT . |
static OMXMLParserWrapper |
OMXMLBuilderFactory.createOMBuilder(OMFactory omFactory,
InputStream in,
String encoding)
Create an object model builder that reads an XML document from the provided input stream
using a specified object model factory and with the default parser configuration defined by
StAXParserConfiguration.DEFAULT . |
OMXMLParserWrapper |
OMMetaFactory.createOMBuilder(OMFactory omFactory,
Node node,
boolean expandEntityReferences)
Create an object model builder for plain XML that gets its input from a DOM tree.
|
static OMXMLParserWrapper |
OMXMLBuilderFactory.createOMBuilder(OMFactory omFactory,
Node node,
boolean expandEntityReferences)
Create an object model builder that reads an XML document from the provided DOM tree using a
specified object model factory.
|
static OMXMLParserWrapper |
OMXMLBuilderFactory.createOMBuilder(OMFactory omFactory,
Reader in)
Create an object model builder that reads an XML document from the provided character stream
using a specified object model factory and with the default parser configuration defined by
StAXParserConfiguration.DEFAULT . |
OMXMLParserWrapper |
OMMetaFactory.createOMBuilder(OMFactory omFactory,
SAXSource source,
boolean expandEntityReferences)
Create an object model builder for plain XML that gets its input from a
SAXSource . |
static OMXMLParserWrapper |
OMXMLBuilderFactory.createOMBuilder(OMFactory omFactory,
SAXSource source,
boolean expandEntityReferences)
Create an object model builder that reads an XML document from the provided
SAXSource
using a specified object model factory. |
OMXMLParserWrapper |
OMMetaFactory.createOMBuilder(OMFactory omFactory,
Source source)
Create an object model builder for plain XML that gets its input from a
Source . |
static OMXMLParserWrapper |
OMXMLBuilderFactory.createOMBuilder(OMFactory omFactory,
Source source)
Create an object model builder that reads an XML document from the provided
Source
using a specified object model factory. |
static OMXMLParserWrapper |
OMXMLBuilderFactory.createOMBuilder(OMFactory omFactory,
StAXParserConfiguration configuration,
Attachments attachments)
Create an XOP aware model builder from the provided
Attachments object using a
specified object model factory and with a given parser configuration. |
OMXMLParserWrapper |
OMMetaFactory.createOMBuilder(OMFactory omFactory,
StAXParserConfiguration configuration,
InputSource is)
Create an object model builder for plain XML that reads a document from the provided input
source.
|
static OMXMLParserWrapper |
OMXMLBuilderFactory.createOMBuilder(OMFactory omFactory,
StAXParserConfiguration configuration,
InputStream in)
Create an object model builder that reads an XML document from the provided input stream
using a specified object model factory and with a given parser configuration.
|
static OMXMLParserWrapper |
OMXMLBuilderFactory.createOMBuilder(OMFactory omFactory,
StAXParserConfiguration configuration,
InputStream in,
String encoding)
Create an object model builder that reads an XML document from the provided input stream
using a specified object model factory and with a given parser configuration.
|
static OMXMLParserWrapper |
OMXMLBuilderFactory.createOMBuilder(OMFactory omFactory,
StAXParserConfiguration configuration,
Reader in)
Create an object model builder that reads an XML document from the provided character stream
using a specified object model factory and with a given parser configuration.
|
OMXMLParserWrapper |
OMMetaFactory.createOMBuilder(StAXParserConfiguration configuration,
OMFactory omFactory,
InputSource rootPart,
MimePartProvider mimePartProvider)
Create an XOP aware object model builder.
|
OMXMLParserWrapper |
OMMetaFactory.createStAXOMBuilder(OMFactory omFactory,
XMLStreamReader parser)
Create an object model builder for plain XML that pulls events from a StAX stream reader.
|
static OMXMLParserWrapper |
OMXMLBuilderFactory.createStAXOMBuilder(OMFactory omFactory,
XMLStreamReader parser)
Create an object model builder that pulls events from a StAX stream reader using a specified
object model factory.
|
Modifier and Type | Method and Description |
---|---|
OMElement |
ByteArrayCustomBuilder.create(String namespace,
String localPart,
OMContainer parent,
XMLStreamReader reader,
OMFactory factory) |
Modifier and Type | Interface and Description |
---|---|
interface |
OMFactoryEx
Interface that is used internally by Axiom and that should not be considered being part of the
public API.
|
Modifier and Type | Method and Description |
---|---|
OMElement |
CustomBuilder.create(String namespace,
String localPart,
OMContainer parent,
XMLStreamReader reader,
OMFactory factory)
Create an OMElement for this whole subtree.
|
protected OMNode |
StAXOMBuilder.createWithCustomBuilder(CustomBuilder customBuilder,
OMFactory factory) |
void |
StAXBuilder.setOMBuilderFactory(OMFactory ombuilderFactory)
Method setOMBuilderFactory.
|
Constructor and Description |
---|
SAXOMBuilder(OMFactory factory)
Deprecated.
Instead of creating an instance of this class directly, create a
SAXSource and use
OMXMLBuilderFactory.createOMBuilder(OMFactory, SAXSource, boolean) . |
SAXOMBuilder(OMFactory factory,
SAXSource source,
boolean expandEntityReferences)
For internal use only.
|
StAXBuilder(OMFactory ombuilderFactory,
XMLStreamReader parser)
Constructor StAXBuilder.
|
StAXBuilder(OMFactory ombuilderFactory,
XMLStreamReader parser,
String characterEncoding)
Constructor StAXBuilder.
|
StAXOMBuilder(OMFactory ombuilderFactory,
XMLStreamReader parser)
Constructor StAXOMBuilder.
|
StAXOMBuilder(OMFactory factory,
XMLStreamReader parser,
OMElement element)
Constructor linked to existing element.
|
StAXOMBuilder(OMFactory factory,
XMLStreamReader parser,
OMElement element,
String characterEncoding)
Constructor linked to existing element.
|
XOPAwareStAXOMBuilder(OMFactory ombuilderFactory,
XMLStreamReader parser,
Attachments attachments)
Constructor StAXOMBuilder.
|
XOPAwareStAXOMBuilder(OMFactory omFactory,
XMLStreamReader reader,
MimePartProvider mimePartProvider) |
XOPAwareStAXOMBuilder(OMFactory factory,
XMLStreamReader parser,
OMElement element,
Attachments attachments)
Constructor linked to existing element.
|
Modifier and Type | Method and Description |
---|---|
OMXMLParserWrapper |
AbstractOMMetaFactory.createOMBuilder(OMFactory omFactory,
Node node,
boolean expandEntityReferences) |
OMXMLParserWrapper |
AbstractOMMetaFactory.createOMBuilder(OMFactory omFactory,
SAXSource source,
boolean expandEntityReferences) |
OMXMLParserWrapper |
AbstractOMMetaFactory.createOMBuilder(OMFactory omFactory,
Source source) |
OMXMLParserWrapper |
AbstractOMMetaFactory.createOMBuilder(OMFactory omFactory,
StAXParserConfiguration configuration,
InputSource is) |
OMXMLParserWrapper |
AbstractOMMetaFactory.createOMBuilder(StAXParserConfiguration configuration,
OMFactory omFactory,
InputSource rootPart,
MimePartProvider mimePartProvider) |
OMXMLParserWrapper |
AbstractOMMetaFactory.createStAXOMBuilder(OMFactory omFactory,
XMLStreamReader parser) |
Modifier and Type | Field and Description |
---|---|
protected OMFactory |
NodeImpl.factory
Factory that created this node
|
Modifier and Type | Method and Description |
---|---|
static OMFactory |
DOOMAbstractFactory.getOMFactory()
Deprecated.
|
OMFactory |
NodeImpl.getOMFactory()
Returns the
OMFactory that created this node |
Constructor and Description |
---|
AttrImpl(DocumentImpl ownerDocument,
String name,
OMFactory factory) |
AttrImpl(DocumentImpl ownerDocument,
String localName,
OMNamespace namespace,
OMFactory factory) |
AttrImpl(DocumentImpl ownerDocument,
String localName,
OMNamespace ns,
String value,
OMFactory factory) |
AttrImpl(DocumentImpl ownerDocument,
String name,
String value,
OMFactory factory) |
CDATASectionImpl(String text,
OMFactory factory) |
CharacterImpl(OMFactory factory) |
CharacterImpl(String value,
OMFactory factory) |
CommentImpl(String value,
OMFactory factory) |
DocumentFragmentImpl(OMFactory factory) |
DocumentImpl(OMFactory factory) |
DocumentImpl(OMXMLParserWrapper parserWrapper,
OMFactory factory) |
DocumentTypeImpl(String rootName,
String publicId,
String systemId,
String internalSubset,
OMFactory factory) |
DOMImplementationImpl(OMFactory factory) |
ElementImpl(ParentNode parentNode,
String localName,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
EntityReferenceImpl(String name,
String replacementText,
OMFactory factory) |
LeafNode(OMFactory factory) |
NodeImpl(OMFactory factory) |
ParentNode(OMFactory factory) |
ProcessingInstructionImpl(String target,
String value,
OMFactory factory) |
RootNode(OMFactory factory) |
TextImpl(char[] value,
OMFactory factory) |
TextImpl(Object dataHandler,
boolean optimize,
OMFactory factory) |
TextImpl(OMContainer parent,
QName text,
int nodeType,
OMFactory factory) |
TextImpl(OMContainer parent,
QName text,
OMFactory factory) |
TextImpl(OMFactory factory) |
TextImpl(String contentID,
DataHandlerProvider dataHandlerProvider,
boolean optimize,
OMFactory factory) |
TextImpl(String value,
int nodeType,
OMFactory factory) |
TextImpl(String text,
OMFactory factory) |
TextImpl(String text,
String mimeType,
boolean optimize,
boolean isBinary,
OMFactory factory) |
TextImpl(String text,
String mimeType,
boolean optimize,
OMFactory factory) |
TextImpl(TextNodeImpl source,
OMFactory factory) |
TextNodeImpl(char[] value,
OMFactory factory) |
TextNodeImpl(Object dataHandler,
boolean optimize,
OMFactory factory) |
TextNodeImpl(OMContainer parent,
QName text,
int nodeType,
OMFactory factory) |
TextNodeImpl(OMContainer parent,
QName text,
OMFactory factory) |
TextNodeImpl(OMFactory factory) |
TextNodeImpl(String contentID,
DataHandlerProvider dataHandlerProvider,
boolean optimize,
OMFactory factory)
Constructor.
|
TextNodeImpl(String text,
OMFactory factory)
Creates a text node with the given text required by the OMDOMFactory.
|
TextNodeImpl(String text,
String mimeType,
boolean optimize,
boolean isBinary,
OMFactory factory) |
TextNodeImpl(String text,
String mimeType,
boolean optimize,
OMFactory factory) |
TextNodeImpl(TextNodeImpl source,
OMFactory factory)
Construct TextImpl that is a copy of the source OMTextImpl
|
Modifier and Type | Class and Description |
---|---|
class |
OMDOMFactory
OM factory implementation for DOOM.
|
Modifier and Type | Method and Description |
---|---|
OMFactory |
OMDOMMetaFactory.getOMFactory() |
Constructor and Description |
---|
DOOMDocumentBuilderFactory(OMFactory factory) |
Constructor and Description |
---|
OMResult(OMFactory omFactory) |
Modifier and Type | Field and Description |
---|---|
protected OMFactory |
OMSerializableImpl.factory |
Modifier and Type | Method and Description |
---|---|
OMFactory |
OMSerializableImpl.getOMFactory() |
OMFactory |
OMAttributeImpl.getOMFactory() |
Constructor and Description |
---|
OMAttributeImpl(String localName,
OMNamespace ns,
String value,
OMFactory factory)
Constructor OMAttributeImpl.
|
OMCommentImpl(OMContainer parentNode,
String contentText,
OMFactory factory,
boolean fromBuilder)
Constructor OMCommentImpl.
|
OMDocTypeImpl(OMContainer parentNode,
String rootName,
String publicId,
String systemId,
String internalSubset,
OMFactory factory,
boolean fromBuilder) |
OMDocumentImpl(OMFactory factory)
Create a
OMDocument given the OMFactory |
OMDocumentImpl(OMXMLParserWrapper parserWrapper,
OMFactory factory)
Create the
OMDocument with the factory |
OMElementImpl(OMContainer parent,
String localName,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
OMElementImpl(QName qname,
OMContainer parent,
OMFactory factory)
It is assumed that the QName passed contains, at least, the localName for this element.
|
OMEntityReferenceImpl(OMContainer parent,
String name,
String replacementText,
OMFactory factory,
boolean fromBuilder) |
OMLeafNode(OMContainer parent,
OMFactory factory,
boolean fromBuilder) |
OMLeafNode(OMFactory factory) |
OMNodeImpl(OMFactory factory)
Constructor OMNodeImpl
|
OMProcessingInstructionImpl(OMContainer parentNode,
String target,
String value,
OMFactory factory,
boolean fromBuilder)
Constructor OMProcessingInstructionImpl.
|
OMSerializableImpl(OMFactory factory) |
OMSourcedElementImpl(OMContainer parent,
String localName,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
OMSourcedElementImpl(OMFactory factory,
OMDataSource source) |
OMSourcedElementImpl(QName qName,
OMFactory factory,
OMDataSource source)
Constructor that takes a QName instead of the local name and the namespace seperately
|
OMSourcedElementImpl(String localName,
OMNamespace ns,
OMContainer parent,
OMFactory factory) |
OMSourcedElementImpl(String localName,
OMNamespace ns,
OMFactory factory,
OMDataSource source)
Constructor.
|
OMTextImpl(Object dataHandler,
OMFactory factory) |
OMTextImpl(OMContainer parent,
char[] charArray,
int nodeType,
OMFactory factory) |
OMTextImpl(OMContainer parent,
Object dataHandler,
boolean optimize,
OMFactory factory,
boolean fromBuilder) |
OMTextImpl(OMContainer parent,
OMTextImpl source,
OMFactory factory)
Construct OMTextImpl that is a copy of the source OMTextImpl
|
OMTextImpl(OMContainer parent,
QName text,
int nodeType,
OMFactory factory) |
OMTextImpl(OMContainer parent,
QName text,
OMFactory factory) |
OMTextImpl(OMContainer parent,
String text,
int nodeType,
OMFactory factory,
boolean fromBuilder) |
OMTextImpl(OMContainer parent,
String text,
OMFactory factory)
Constructor OMTextImpl.
|
OMTextImpl(OMContainer parent,
String s,
String mimeType,
boolean optimize,
OMFactory factory) |
OMTextImpl(String contentID,
DataHandlerProvider dataHandlerProvider,
boolean optimize,
OMFactory factory)
Constructor.
|
OMTextImpl(String s,
int nodeType,
OMFactory factory) |
OMTextImpl(String s,
OMFactory factory)
Constructor OMTextImpl.
|
OMTextImpl(String s,
String mimeType,
boolean optimize,
OMFactory factory) |
Modifier and Type | Class and Description |
---|---|
class |
OMLinkedListImplFactory
Class OMLinkedListImplFactory
|
Modifier and Type | Method and Description |
---|---|
OMFactory |
OMLinkedListMetaFactory.getOMFactory() |
Modifier and Type | Method and Description |
---|---|
static StAXOMBuilder |
OMXMLBuilderFactory.createStAXOMBuilder(OMFactory ombuilderFactory,
XMLStreamReader parser)
Deprecated.
Method createStAXOMBuilder.
|
Modifier and Type | Method and Description |
---|---|
static OMElement |
ElementHelper.importOMElement(OMElement omElement,
OMFactory omFactory)
Some times two OMElements needs to be added to the same object tree.
|
static OMElement |
AXIOMUtil.stringToOM(OMFactory omFactory,
String xmlFragment)
Create an OMElement from an XML fragment given as a string.
|
static OMText |
TextHelper.toOMText(byte[] b,
int off,
int length,
OMFactory factory,
boolean isOptimize)
Deprecated.
The implementation of this method is incomplete. It will be removed in Axiom 1.3.
|
static OMText |
TextHelper.toOMText(byte[] b,
int off,
int length,
OMFactory factory,
boolean isOptimize,
String attachmentDir)
Deprecated.
The implementation of this method is incomplete. It will be removed in Axiom 1.3.
|
Modifier and Type | Interface and Description |
---|---|
interface |
SOAPFactory |
Modifier and Type | Interface and Description |
---|---|
interface |
SOAPFactoryEx
Interface that is used internally by Axiom and that should not be considered being part of the
public API.
|
Constructor and Description |
---|
SOAPBodyImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPElement(ParentNode parentNode,
String localName,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPEnvelopeImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPFaultCodeImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPFaultDetailImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPFaultImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPFaultNodeImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPFaultReasonImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPFaultRoleImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPFaultSubCodeImpl(ParentNode parentNode,
String localName,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPFaultTextImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPFaultValueImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPHeaderBlockImpl(ParentNode parentNode,
String localName,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
SOAPHeaderImpl(ParentNode parentNode,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
Modifier and Type | Class and Description |
---|---|
class |
DOMSOAPFactory |
Constructor and Description |
---|
SOAPHeaderBlockImpl(OMContainer parent,
String localName,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
Modifier and Type | Class and Description |
---|---|
class |
SOAP11Factory |
Constructor and Description |
---|
SOAP11HeaderBlockImpl(OMContainer parent,
String localName,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
Modifier and Type | Class and Description |
---|---|
class |
SOAP12Factory |
Constructor and Description |
---|
SOAP12HeaderBlockImpl(OMContainer parent,
String localName,
OMNamespace ns,
OMXMLParserWrapper builder,
OMFactory factory,
boolean generateNSDecl) |
Modifier and Type | Method and Description |
---|---|
abstract OMElement |
CreateOMElementVariant.createOMElement(OMFactory factory,
OMContainer parent,
String localName,
String namespaceURI,
String prefix)
Create an
OMElement . |
abstract OMContainer |
CreateOMElementParentSupplier.createParent(OMFactory factory) |
Modifier and Type | Method and Description |
---|---|
abstract OMSourcedElement |
OMSourcedElementVariant.createOMSourcedElement(OMFactory factory,
QName qname) |
Copyright © 2004–2023 The Apache Software Foundation. All rights reserved.