Uses of Interface
org.smooks.api.ExecutionContext
-
-
Uses of ExecutionContext in org.smooks
Methods in org.smooks that return ExecutionContext Modifier and Type Method Description ExecutionContext
Smooks. createExecutionContext()
Create aExecutionContext
instance for use on this Smooks instance.ExecutionContext
Smooks. createExecutionContext(String targetProfile)
Create aExecutionContext
instance for use on this Smooks instance.Methods in org.smooks with parameters of type ExecutionContext Modifier and Type Method Description void
Smooks. filterSource(ExecutionContext executionContext, Source source, Sink... sinks)
-
Uses of ExecutionContext in org.smooks.api.bean.context
Methods in org.smooks.api.bean.context with parameters of type ExecutionContext Modifier and Type Method Description BeanContext
BeanContext. newSubContext(ExecutionContext executionContext)
-
Uses of ExecutionContext in org.smooks.api.bean.lifecycle
Methods in org.smooks.api.bean.lifecycle that return ExecutionContext Modifier and Type Method Description ExecutionContext
BeanContextLifecycleEvent. getExecutionContext()
-
Uses of ExecutionContext in org.smooks.api.delivery
Methods in org.smooks.api.delivery with parameters of type ExecutionContext Modifier and Type Method Description boolean
FilterBypass. bypass(ExecutionContext executionContext, Source source, Sink sink)
Bypass the Smooks Filter process.void
ContentDeliveryConfig. executeHandlerCleanup(ExecutionContext executionContext)
Cleanup execution context lifecycle aware handlers.void
ContentDeliveryConfig. executeHandlerInit(ExecutionContext executionContext)
Initialize execution context lifecycle aware handlers.Filter
ContentDeliveryConfig. newFilter(ExecutionContext executionContext)
Get a new stream filter for the content delivery configuration. -
Uses of ExecutionContext in org.smooks.api.delivery.fragment
Methods in org.smooks.api.delivery.fragment with parameters of type ExecutionContext Modifier and Type Method Description boolean
Fragment. isMatch(SelectorPath selectorPath, ExecutionContext executionContext)
Is the suppliedSelectorPath
targeting thisFragment
. -
Uses of ExecutionContext in org.smooks.api.expression
Methods in org.smooks.api.expression with parameters of type ExecutionContext Modifier and Type Method Description boolean
ExecutionContextExpressionEvaluator. eval(ExecutionContext context)
Evaluate an expression based on the suppliedExecutionContext
.Object
ExecutionContextExpressionEvaluator. getValue(ExecutionContext context)
Evaluate an expression based on the suppliedExecutionContext
and return the value. -
Uses of ExecutionContext in org.smooks.api.io
Methods in org.smooks.api.io with parameters of type ExecutionContext Modifier and Type Method Description Writer
ResultSinkStrategy. createWriter(Sink sink, ExecutionContext executionContext)
-
Uses of ExecutionContext in org.smooks.api.lifecycle
Methods in org.smooks.api.lifecycle with parameters of type ExecutionContext Modifier and Type Method Description void
DOMFilterLifecycle. onAssemblyStarted(ExecutionContext executionContext)
void
PostExecutionLifecycle. onPostExecution(ExecutionContext executionContext)
Cleanup the resources allocated by this resource for the specified ExecutionContext.void
FilterLifecycle. onPostFilter(ExecutionContext executionContext)
void
PostFragmentLifecycle. onPostFragment(Fragment<?> fragment, ExecutionContext executionContext)
Cleanup the resources allocated by this resource for the specified ExecutionContext.void
PreExecutionLifecycle. onPreExecution(ExecutionContext executionContext)
Initialize the resources allocated by this resource for the specified ExecutionContext.void
FilterLifecycle. onPreFilter(ExecutionContext executionContext)
void
DOMFilterLifecycle. onProcessingStarted(ExecutionContext executionContext)
void
DOMFilterLifecycle. onSerializationStarted(ExecutionContext executionContext)
-
Uses of ExecutionContext in org.smooks.api.resource.config.xpath
Methods in org.smooks.api.resource.config.xpath with parameters of type ExecutionContext Modifier and Type Method Description boolean
PredicateEvaluator. evaluate(Fragment<?> fragment, ExecutionContext executionContext)
Does this XPath expression evaluate for the suppliedElement
context object.boolean
SelectorStep. evaluate(Fragment<?> fragment, ExecutionContext executionContext)
-
Uses of ExecutionContext in org.smooks.api.resource.reader
Methods in org.smooks.api.resource.reader with parameters of type ExecutionContext Modifier and Type Method Description void
SmooksReader. setExecutionContext(ExecutionContext executionContext)
Set the SmooksExecutionContext
on the implementing class.void
SmooksXMLReader. setExecutionContext(ExecutionContext executionContext)
Set the SmooksExecutionContext
on the implementing class. -
Uses of ExecutionContext in org.smooks.api.resource.visitor
Methods in org.smooks.api.resource.visitor with parameters of type ExecutionContext Modifier and Type Method Description void
SerializerVisitor. writeCharacterData(Node node, Writer writer, ExecutionContext executionContext)
Write element text.void
SerializerVisitor. writeElementCDATA(CDATASection cdata, Writer writer, ExecutionContext executionContext)
Write element CDATA section.void
SerializerVisitor. writeElementComment(Comment comment, Writer writer, ExecutionContext executionContext)
Write element comment.void
SerializerVisitor. writeElementEntityRef(EntityReference entityRef, Writer writer, ExecutionContext executionContext)
Write element entity reference object.void
SerializerVisitor. writeElementNode(Node node, Writer writer, ExecutionContext executionContext)
Write element Node object.void
SerializerVisitor. writeEndElement(Element element, Writer writer, ExecutionContext executionContext)
Write the element end portion; close the element.void
SerializerVisitor. writeStartElement(Element element, Writer writer, ExecutionContext executionContext)
Write the element start portion; the element name and it's attributes. -
Uses of ExecutionContext in org.smooks.api.resource.visitor.dom
Methods in org.smooks.api.resource.visitor.dom with parameters of type ExecutionContext Modifier and Type Method Description void
DOMVisitAfter. visitAfter(Element element, ExecutionContext executionContext)
Visit the supplied element after visiting its child elements.void
DOMVisitBefore. visitBefore(Element element, ExecutionContext executionContext)
Visit the supplied element before visiting its child elements. -
Uses of ExecutionContext in org.smooks.api.resource.visitor.sax.ng
Methods in org.smooks.api.resource.visitor.sax.ng with parameters of type ExecutionContext Modifier and Type Method Description void
AfterVisitor. visitAfter(Element element, ExecutionContext executionContext)
Visits the end of anElement
.void
BeforeVisitor. visitBefore(Element element, ExecutionContext executionContext)
Visits the beginning of anElement
.void
ChildrenVisitor. visitChildElement(Element childElement, ExecutionContext executionContext)
Visits a childElement
.void
ChildrenVisitor. visitChildText(CharacterData characterData, ExecutionContext executionContext)
Visits the character data of anElement
. -
Uses of ExecutionContext in org.smooks.benchmark
Methods in org.smooks.benchmark with parameters of type ExecutionContext Modifier and Type Method Description void
CounterVisitor. onPreExecution(ExecutionContext executionContext)
void
BenchmarkVisitor. visitAfter(Element element, ExecutionContext executionContext)
void
BibliographyVisitor. visitAfter(Element element, ExecutionContext executionContext)
void
BenchmarkVisitor. visitBefore(Element element, ExecutionContext executionContext)
void
CounterVisitor. visitBefore(Element element, ExecutionContext executionContext)
void
BenchmarkVisitor. visitChildElement(Element childElement, ExecutionContext executionContext)
void
BenchmarkVisitor. visitChildText(CharacterData characterData, ExecutionContext executionContext)
-
Uses of ExecutionContext in org.smooks.engine
Classes in org.smooks.engine that implement ExecutionContext Modifier and Type Class Description class
DefaultExecutionContext
Standalone Container Request implementation. -
Uses of ExecutionContext in org.smooks.engine.bean.context
Methods in org.smooks.engine.bean.context with parameters of type ExecutionContext Modifier and Type Method Description static StandaloneBeanContext
StandaloneBeanContextFactory. create(ExecutionContext executionContext)
BeanContext
StandaloneBeanContext. newSubContext(ExecutionContext executionContext)
Constructors in org.smooks.engine.bean.context with parameters of type ExecutionContext Constructor Description StandaloneBeanContext(ExecutionContext executionContext, BeanIdStore beanIdStore, Map<String,Object> beanMap)
Create the StandAloneBeanContext -
Uses of ExecutionContext in org.smooks.engine.bean.lifecycle
Methods in org.smooks.engine.bean.lifecycle that return ExecutionContext Modifier and Type Method Description ExecutionContext
DefaultBeanContextLifecycleEvent. getExecutionContext()
Constructors in org.smooks.engine.bean.lifecycle with parameters of type ExecutionContext Constructor Description DefaultBeanContextLifecycleEvent(ExecutionContext executionContext, Fragment<?> source, BeanLifecycle lifecycle, BeanId beanId, Object bean)
Public constructor. -
Uses of ExecutionContext in org.smooks.engine.delivery
Methods in org.smooks.engine.delivery that return ExecutionContext Modifier and Type Method Description protected ExecutionContext
AbstractParser. getExecutionContext()
ExecutionContext
SmooksContentHandler. getExecutionContext()
Methods in org.smooks.engine.delivery with parameters of type ExecutionContext Modifier and Type Method Description protected void
AbstractParser. attachNamespaceDeclarationStack(XMLReader reader, ExecutionContext execContext)
static void
AbstractParser. attachXMLReader(XMLReader xmlReader, ExecutionContext execContext)
protected void
AbstractParser. configureReader(XMLReader xmlReader, DefaultHandler2 contentHandler, ExecutionContext executionContext, Source source)
static void
AbstractParser. detachXMLReader(ExecutionContext executionContext)
void
AbstractContentDeliveryConfig. executeHandlerCleanup(ExecutionContext executionContext)
void
AbstractContentDeliveryConfig. executeHandlerInit(ExecutionContext executionContext)
static SmooksContentHandler
SmooksContentHandler. getHandler(ExecutionContext executionContext)
protected Reader
AbstractFilter. getReader(Source source, ExecutionContext executionContext)
static Stack<XMLReader>
AbstractParser. getReaders(ExecutionContext executionContext)
protected Writer
AbstractFilter. getWriter(Sink sink, ExecutionContext executionContext)
static XMLReader
AbstractParser. getXMLReader(ExecutionContext executionContext)
void
DOMReader. setExecutionContext(ExecutionContext executionContext)
static void
AbstractParser. setReaders(Stack<XMLReader> readers, ExecutionContext executionContext)
Constructors in org.smooks.engine.delivery with parameters of type ExecutionContext Constructor Description AbstractParser(ExecutionContext executionContext)
AbstractParser(ExecutionContext executionContext, ResourceConfig saxDriverConfig)
Public constructor.SmooksContentHandler(ExecutionContext executionContext, SmooksContentHandler parentContentHandler)
XMLReaderHierarchyChangeListener(ExecutionContext executionContext)
-
Uses of ExecutionContext in org.smooks.engine.delivery.dom
Methods in org.smooks.engine.delivery.dom with parameters of type ExecutionContext Modifier and Type Method Description Filter
DOMContentDeliveryConfig. newFilter(ExecutionContext executionContext)
Constructors in org.smooks.engine.delivery.dom with parameters of type ExecutionContext Constructor Description DOMBuilderContentHandler(ExecutionContext execContext)
DOMBuilderContentHandler(ExecutionContext execContext, SmooksContentHandler parentContentHandler)
DOMParser(ExecutionContext executionContext)
Public constructor.DOMParser(ExecutionContext executionContext, ResourceConfig saxDriverConfig)
Public constructor.SmooksDOMFilter(ExecutionContext executionContext)
Public constructor. -
Uses of ExecutionContext in org.smooks.engine.delivery.dom.serialize
Methods in org.smooks.engine.delivery.dom.serialize with parameters of type ExecutionContext Modifier and Type Method Description void
ContextObjectSerializerVisitor. visitAfter(Element element, ExecutionContext executionContext)
void
GhostElementSerializerVisitor. visitAfter(Element element, ExecutionContext executionContext)
void
ContextObjectSerializerVisitor. visitBefore(Element element, ExecutionContext executionContext)
void
GhostElementSerializerVisitor. visitBefore(Element element, ExecutionContext executionContext)
void
TextSerializerVisitor. visitBefore(Element element, ExecutionContext executionContext)
void
ContextObjectSerializerVisitor. visitChildElement(Element childElement, ExecutionContext executionContext)
void
GhostElementSerializerVisitor. visitChildElement(Element childElement, ExecutionContext executionContext)
void
ContextObjectSerializerVisitor. visitChildText(CharacterData characterData, ExecutionContext executionContext)
void
GhostElementSerializerVisitor. visitChildText(CharacterData characterData, ExecutionContext executionContext)
void
ContextObjectSerializerVisitor. writeCharacterData(Node node, Writer writer, ExecutionContext executionContext)
void
DefaultDOMSerializerVisitor. writeCharacterData(Node node, Writer writer, ExecutionContext executionContext)
void
ContextObjectSerializerVisitor. writeElementCDATA(CDATASection cdata, Writer writer, ExecutionContext executionContext)
void
DefaultDOMSerializerVisitor. writeElementCDATA(CDATASection cdata, Writer writer, ExecutionContext executionContext)
void
ContextObjectSerializerVisitor. writeElementComment(Comment comment, Writer writer, ExecutionContext executionContext)
void
DefaultDOMSerializerVisitor. writeElementComment(Comment comment, Writer writer, ExecutionContext executionContext)
void
ContextObjectSerializerVisitor. writeElementEntityRef(EntityReference entityRef, Writer writer, ExecutionContext executionContext)
void
DefaultDOMSerializerVisitor. writeElementEntityRef(EntityReference entityRef, Writer writer, ExecutionContext executionContext)
void
ContextObjectSerializerVisitor. writeElementNode(Node node, Writer writer, ExecutionContext executionContext)
void
DefaultDOMSerializerVisitor. writeElementNode(Node node, Writer writer, ExecutionContext executionContext)
void
ContextObjectSerializerVisitor. writeEndElement(Element element, Writer writer, ExecutionContext executionContext)
void
DefaultDOMSerializerVisitor. writeEndElement(Element element, Writer writer, ExecutionContext executionContext)
void
GhostElementSerializerVisitor. writeEndElement(Element element, Writer writer, ExecutionContext executionContext)
void
TextSerializerVisitor. writeEndElement(Element element, Writer writer, ExecutionContext executionContext)
void
ContextObjectSerializerVisitor. writeStartElement(Element element, Writer writer, ExecutionContext executionContext)
void
DefaultDOMSerializerVisitor. writeStartElement(Element element, Writer writer, ExecutionContext executionContext)
void
GhostElementSerializerVisitor. writeStartElement(Element element, Writer writer, ExecutionContext executionContext)
void
TextSerializerVisitor. writeStartElement(Element element, Writer writer, ExecutionContext executionContext)
Constructors in org.smooks.engine.delivery.dom.serialize with parameters of type ExecutionContext Constructor Description Serializer(Node node, ExecutionContext executionContext)
Public constructor. -
Uses of ExecutionContext in org.smooks.engine.delivery.event
Constructors in org.smooks.engine.delivery.event with parameters of type ExecutionContext Constructor Description VisitExecutionEvent(Fragment<F> fragment, ContentHandlerBinding<T> visitorBinding, VisitSequence sequence, ExecutionContext executionContext)
VisitExecutionEvent(Fragment<F> fragment, ContentHandlerBinding<T> visitorBinding, VisitSequence sequence, ExecutionContext executionContext, Throwable error)
-
Uses of ExecutionContext in org.smooks.engine.delivery.fragment
Methods in org.smooks.engine.delivery.fragment with parameters of type ExecutionContext Modifier and Type Method Description protected boolean
NodeFragment. assertConditionTrue(ExecutionContext executionContext, SelectorPath selectorPath)
protected boolean
NodeFragment. evaluate(Node node, SelectorPath selectorPath, ExecutionContext executionContext)
boolean
NodeFragment. isMatch(SelectorPath selectorPath, ExecutionContext executionContext)
-
Uses of ExecutionContext in org.smooks.engine.delivery.interceptor
Methods in org.smooks.engine.delivery.interceptor with parameters of type ExecutionContext Modifier and Type Method Description boolean
StaticProxyInterceptor. bypass(ExecutionContext executionContext, Source source, Sink sink)
protected <T extends Visitor>
voidStreamSinkWriterInterceptor. intercept(AbstractInterceptorVisitor.Invocation<T> invocation, org.smooks.engine.delivery.interceptor.StreamSinkWriterInterceptor.StreamSinkWriterDelegateNode streamResultWriterDelegateNode, ExecutionContext executionContext)
protected void
ExecutionEventInterceptor. onEvent(ExecutionContext executionContext, Fragment<Node> fragment, VisitSequence visitSequence)
void
StaticProxyInterceptor. onPostExecution(ExecutionContext executionContext)
void
StaticProxyInterceptor. onPostFragment(Fragment<?> fragment, ExecutionContext executionContext)
void
StaticProxyInterceptor. onPreExecution(ExecutionContext executionContext)
void
ExceptionInterceptor. visitAfter(Element element, ExecutionContext executionContext)
void
ExecutionEventInterceptor. visitAfter(Element element, ExecutionContext executionContext)
void
StaticProxyInterceptor. visitAfter(Element element, ExecutionContext executionContext)
void
StreamSinkWriterInterceptor. visitAfter(Element element, ExecutionContext executionContext)
void
TextConsumerInterceptor. visitAfter(Element element, ExecutionContext executionContext)
void
ExceptionInterceptor. visitBefore(Element element, ExecutionContext executionContext)
void
ExecutionEventInterceptor. visitBefore(Element element, ExecutionContext executionContext)
void
StaticProxyInterceptor. visitBefore(Element element, ExecutionContext executionContext)
void
StreamSinkWriterInterceptor. visitBefore(Element element, ExecutionContext executionContext)
void
TextConsumerInterceptor. visitBefore(Element element, ExecutionContext executionContext)
void
ExceptionInterceptor. visitChildElement(Element childElement, ExecutionContext executionContext)
void
ExecutionEventInterceptor. visitChildElement(Element childElement, ExecutionContext executionContext)
void
StaticProxyInterceptor. visitChildElement(Element childElement, ExecutionContext executionContext)
void
StreamSinkWriterInterceptor. visitChildElement(Element childElement, ExecutionContext executionContext)
void
TextConsumerInterceptor. visitChildElement(Element childElement, ExecutionContext executionContext)
void
ExceptionInterceptor. visitChildText(CharacterData characterData, ExecutionContext executionContext)
void
ExecutionEventInterceptor. visitChildText(CharacterData characterData, ExecutionContext executionContext)
void
StaticProxyInterceptor. visitChildText(CharacterData characterData, ExecutionContext executionContext)
void
StreamSinkWriterInterceptor. visitChildText(CharacterData characterData, ExecutionContext executionContext)
void
TextConsumerInterceptor. visitChildText(CharacterData characterData, ExecutionContext executionContext)
-
Uses of ExecutionContext in org.smooks.engine.delivery.sax.ng
Fields in org.smooks.engine.delivery.sax.ng declared as ExecutionContext Modifier and Type Field Description protected ExecutionContext
SaxNgFilter. executionContext
Methods in org.smooks.engine.delivery.sax.ng with parameters of type ExecutionContext Modifier and Type Method Description protected void
ConsumeSerializerVisitor. closeElement(Element element, Writer writer, ExecutionContext executionContext)
Filter
SaxNgContentDeliveryConfig. newFilter(ExecutionContext executionContext)
protected void
ConsumeSerializerVisitor. onWrite(Consumer<Writer> writerConsumer, ExecutionContext executionContext, Node node)
protected void
SystemConsumeSerializerVisitor. onWrite(Consumer<Writer> writerConsumer, ExecutionContext executionContext, Node node)
protected void
SaxNgParser. parse(Source source, ExecutionContext executionContext)
void
ConsumeSerializerVisitor. visitAfter(Element element, ExecutionContext executionContext)
void
SimpleSerializerVisitor. visitAfter(Element element, ExecutionContext executionContext)
void
ConsumeSerializerVisitor. visitBefore(Element element, ExecutionContext executionContext)
void
SimpleSerializerVisitor. visitBefore(Element element, ExecutionContext executionContext)
void
ConsumeSerializerVisitor. visitChildElement(Element childElement, ExecutionContext executionContext)
void
SimpleSerializerVisitor. visitChildElement(Element childElement, ExecutionContext executionContext)
void
ConsumeSerializerVisitor. visitChildText(CharacterData characterData, ExecutionContext executionContext)
void
SimpleSerializerVisitor. visitChildText(CharacterData characterData, ExecutionContext executionContext)
void
SimpleSerializerVisitor. writeCharacterData(Node node, Writer writer, ExecutionContext executionContext)
void
SimpleSerializerVisitor. writeElementCDATA(CDATASection cdata, Writer writer, ExecutionContext executionContext)
void
SimpleSerializerVisitor. writeElementComment(Comment comment, Writer writer, ExecutionContext executionContext)
void
SimpleSerializerVisitor. writeElementEntityRef(EntityReference entityRef, Writer writer, ExecutionContext executionContext)
void
SimpleSerializerVisitor. writeElementNode(Node node, Writer writer, ExecutionContext executionContext)
void
SimpleSerializerVisitor. writeEndElement(Element element, Writer writer, ExecutionContext executionContext)
void
ConsumeSerializerVisitor. writeStartElement(Element element, ExecutionContext executionContext)
void
SimpleSerializerVisitor. writeStartElement(Element element, Writer writer, ExecutionContext executionContext)
Constructors in org.smooks.engine.delivery.sax.ng with parameters of type ExecutionContext Constructor Description SaxNgContentHandler(ExecutionContext executionContext, DocumentBuilder documentBuilder)
SaxNgContentHandler(ExecutionContext executionContext, DocumentBuilder documentBuilder, SmooksContentHandler parentContentHandler)
SaxNgFilter(ExecutionContext executionContext, DocumentBuilder documentBuilder, boolean closeSource, boolean closeSink)
SaxNgParser(ExecutionContext executionContext, DocumentBuilder documentBuilder)
-
Uses of ExecutionContext in org.smooks.engine.delivery.sax.ng.bridge
Fields in org.smooks.engine.delivery.sax.ng.bridge declared as ExecutionContext Modifier and Type Field Description protected ExecutionContext
BridgeAwareExecutionEventListener. executionContext
Methods in org.smooks.engine.delivery.sax.ng.bridge with parameters of type ExecutionContext Modifier and Type Method Description protected boolean
BridgeInterceptor. doVisit(Node node, String currentVisit, ExecutionContext executionContext)
Node
Bridge. getSourceValue(ExecutionContext executionContext)
Provides a convenience method to retrieve the source node.void
BridgeInterceptor. visitAfter(Element element, ExecutionContext executionContext)
void
BridgeInterceptor. visitBefore(Element element, ExecutionContext executionContext)
void
BridgeInterceptor. visitChildElement(Element childElement, ExecutionContext executionContext)
void
BridgeInterceptor. visitChildText(CharacterData characterData, ExecutionContext executionContext)
Constructors in org.smooks.engine.delivery.sax.ng.bridge with parameters of type ExecutionContext Constructor Description BridgeAwareExecutionEventListener(ExecutionContext executionContext)
-
Uses of ExecutionContext in org.smooks.engine.delivery.sax.ng.terminate
Methods in org.smooks.engine.delivery.sax.ng.terminate with parameters of type ExecutionContext Modifier and Type Method Description void
TerminateVisitor. visitAfter(Element element, ExecutionContext executionContext)
void
TerminateVisitor. visitBefore(Element element, ExecutionContext executionContext)
-
Uses of ExecutionContext in org.smooks.engine.lifecycle
Constructors in org.smooks.engine.lifecycle with parameters of type ExecutionContext Constructor Description AssemblyStartedDOMFilterLifecyclePhase(ExecutionContext executionContext)
PostFilterLifecyclePhase(ExecutionContext executionContext)
PostFragmentPhase(Fragment<?> fragment, ExecutionContext executionContext)
PreFilterLifecyclePhase(ExecutionContext executionContext)
ProcessingStartedDOMFilterLifecyclePhase(ExecutionContext executionContext)
SerializationStartedDOMFilterLifecyclePhase(ExecutionContext executionContext)
-
Uses of ExecutionContext in org.smooks.engine.plugin
Methods in org.smooks.engine.plugin with parameters of type ExecutionContext Modifier and Type Method Description Object
PayloadProcessor. process(Object payload, ExecutionContext executionContext)
Process the supplied payload. -
Uses of ExecutionContext in org.smooks.engine.report
Methods in org.smooks.engine.report with parameters of type ExecutionContext Modifier and Type Method Description void
AbstractReportGenerator. onAssemblyStarted(ExecutionContext executionContext)
void
AbstractReportGenerator. onPostFilter(ExecutionContext executionContext)
void
AbstractReportGenerator. onPreFilter(ExecutionContext executionContext)
void
AbstractReportGenerator. onProcessingStarted(ExecutionContext executionContext)
void
AbstractReportGenerator. onSerializationStarted(ExecutionContext executionContext)
protected void
AbstractReportGenerator. processFinishEvent(ExecutionContext executionContext)
-
Uses of ExecutionContext in org.smooks.engine.resource.config.loader.xml.extension
Methods in org.smooks.engine.resource.config.loader.xml.extension with parameters of type ExecutionContext Modifier and Type Method Description static void
ResourceConfigUtils. mapProperty(ResourceConfig fromResourceConfig, String fromProperty, ResourceConfig toResourceConfig, String toProperty, String defaultValue, ExecutionContext executionContext)
static void
ResourceConfigUtils. setProperty(ResourceConfig resourceConfig, String setOn, Object value, ExecutionContext executionContext)
static void
ResourceConfigUtils. setProperty(ResourceConfig resourceConfig, String setOn, Object value, Element xml, ExecutionContext executionContext)
void
CloneResourceConfig. visitAfter(Element element, ExecutionContext executionContext)
void
NewResourceConfig. visitAfter(Element element, ExecutionContext executionContext)
void
CloneResourceConfig. visitBefore(Element element, ExecutionContext executionContext)
void
MapToResourceConfigFromAttribute. visitBefore(Element element, ExecutionContext executionContext)
void
MapToResourceConfigFromParentConfig. visitBefore(Element element, ExecutionContext executionContext)
void
MapToResourceConfigFromText. visitBefore(Element element, ExecutionContext executionContext)
void
MapToResourceConfigFromXml. visitBefore(Element element, ExecutionContext executionContext)
void
NewResourceConfig. visitBefore(Element element, ExecutionContext executionContext)
void
SetOnResourceConfig. visitBefore(Element element, ExecutionContext executionContext)
-
Uses of ExecutionContext in org.smooks.engine.resource.config.xpath
Methods in org.smooks.engine.resource.config.xpath with parameters of type ExecutionContext Modifier and Type Method Description int
ElementPositionCounter. getCount(Element element, ExecutionContext executionContext)
protected Integer
ElementPositionCounter. getElementPosition(Element element, ExecutionContext executionContext)
void
ElementPositionCounter. visitBefore(Element element, ExecutionContext executionContext)
-
Uses of ExecutionContext in org.smooks.engine.resource.config.xpath.predicate
Methods in org.smooks.engine.resource.config.xpath.predicate with parameters of type ExecutionContext Modifier and Type Method Description boolean
DefaultPredicateEvaluator. evaluate(Fragment<?> fragment, ExecutionContext executionContext)
boolean
PositionPredicateEvaluator. evaluate(Fragment<?> fragment, ExecutionContext executionContext)
-
Uses of ExecutionContext in org.smooks.engine.resource.config.xpath.step
Methods in org.smooks.engine.resource.config.xpath.step with parameters of type ExecutionContext Modifier and Type Method Description boolean
AbstractSelectorStep. evaluate(Fragment<?> fragment, ExecutionContext executionContext)
-
Uses of ExecutionContext in org.smooks.engine.resource.reader
Methods in org.smooks.engine.resource.reader with parameters of type ExecutionContext Modifier and Type Method Description void
NullSourceXMLReader. setExecutionContext(ExecutionContext executionContext)
void
RewriteReader. setExecutionContext(ExecutionContext executionContext)
void
XStreamXMLReader. setExecutionContext(ExecutionContext executionContext)
-
Uses of ExecutionContext in org.smooks.engine.resource.visitor.dom
Methods in org.smooks.engine.resource.visitor.dom with parameters of type ExecutionContext Modifier and Type Method Description static DOMModel
DOMModel. getModel(ExecutionContext executionContext)
Document
DomModelCreator. popCreator(ExecutionContext executionContext)
void
DomModelCreator. visitAfter(Element element, ExecutionContext executionContext)
void
DomModelCreator. visitBefore(Element element, ExecutionContext executionContext)
-
Uses of ExecutionContext in org.smooks.engine.resource.visitor.smooks
Fields in org.smooks.engine.resource.visitor.smooks with type parameters of type ExecutionContext Modifier and Type Field Description protected static TypedKey<ExecutionContext>
NestedSmooksVisitor. NESTED_EXECUTION_CONTEXT_MEMENTO_TYPED_KEY
Methods in org.smooks.engine.resource.visitor.smooks with parameters of type ExecutionContext Modifier and Type Method Description protected void
NestedSmooksVisitor. append(Fragment<Node> visitedNodeFragment, Element rootElement, NestedSmooksVisitor.Action action, ExecutionContext executionContext)
protected Node
NestedSmooksVisitor. deAttach(Node node, ExecutionContext executionContext)
protected void
NestedSmooksVisitor. filterSource(Fragment<Node> visitedNodeFragment, Fragment<Node> rootNodeFragment, Writer writer, ExecutionContext executionContext, String visit)
void
NestedSmooksVisitor. onPreExecution(ExecutionContext executionContext)
protected void
NestedSmooksVisitor. prependAfter(Fragment<Node> visitedNodeFragment, Element rootElement, ExecutionContext executionContext)
protected Writer
NestedSmooksVisitor. prependBefore(Fragment<Node> visitedNodeFragment, NestedSmooksVisitor.Action action, Element rootElement, ExecutionContext executionContext)
protected void
NestedSmooksVisitor. replaceAfter(Fragment<Node> visitedNodeFragment, Node rootNode, ExecutionContext executionContext)
protected Writer
NestedSmooksVisitor. replaceBefore(Fragment<Node> visitedNodeFragment, Node rootNode, ExecutionContext executionContext)
void
NestedSmooksVisitor. visitAfter(Element element, ExecutionContext executionContext)
void
NestedSmooksVisitor. visitBefore(Element element, ExecutionContext executionContext)
-
Uses of ExecutionContext in org.smooks.engine.xml
Methods in org.smooks.engine.xml with parameters of type ExecutionContext Modifier and Type Method Description static DocType.DocumentTypeData
DocType. getDocType(ExecutionContext executionContext)
static void
DocType. setDocType(String name, String publicId, String systemId, String xmlns, ExecutionContext executionContext)
-
Uses of ExecutionContext in org.smooks.io
Methods in org.smooks.io that return ExecutionContext Modifier and Type Method Description ExecutionContext
FragmentWriter. getExecutionContext()
Methods in org.smooks.io with parameters of type ExecutionContext Modifier and Type Method Description protected boolean
AbstractOutputStreamResource. closeCondition(ExecutionContext executionContext)
protected void
AbstractOutputStreamResource. closeResource(ExecutionContext executionContext)
Close the resource output stream.Writer
DefaultResultSinkStrategy. createWriter(Sink sink, ExecutionContext executionContext)
abstract OutputStream
AbstractOutputStreamResource. getOutputStream(ExecutionContext executionContext)
Retrieve/create an output stream that is appropriate for the concreate implementationprotected OutputStream
ResourceOutputStream. getOutputStream(String resourceName, ExecutionContext executionContext)
Get anOutputStream
to the named Resource.protected Writer
ResourceWriter. getOutputWriter(String resourceName, ExecutionContext executionContext)
Get aWriter
to the namedOutputStream
Resource.void
AbstractOutputStreamResource. onPostExecution(ExecutionContext executionContext)
void
AbstractOutputStreamResource. onPostFragment(Fragment<?> fragment, ExecutionContext executionContext)
protected OutputStream
ResourceOutputStream. openOutputStream(AbstractOutputStreamResource resource, String resourceName, ExecutionContext executionContext)
protected OutputStream
ResourceWriter. openOutputStream(AbstractOutputStreamResource resource, ExecutionContext executionContext)
static Writer
Stream. out(ExecutionContext executionContext)
void
AbstractOutputStreamResource. visitBefore(Element element, ExecutionContext executionContext)
Constructors in org.smooks.io with parameters of type ExecutionContext Constructor Description FragmentWriter(ExecutionContext executionContext, Fragment<?> fragment)
FragmentWriter(ExecutionContext executionContext, Fragment<?> fragment, boolean tryPark)
ResourceOutputStream(ExecutionContext executionContext, String resourceName)
ResourceWriter(ExecutionContext executionContext, String resourceName)
-
Uses of ExecutionContext in org.smooks.io.sink
Methods in org.smooks.io.sink with parameters of type ExecutionContext Modifier and Type Method Description static Sink
FilterSink. getSink(ExecutionContext executionContext, Class<? extends Sink> sinkType)
static Sink[]
FilterSink. getSinks(ExecutionContext executionContext)
static void
FilterSink. setSinks(ExecutionContext executionContext, Sink... sinks)
-
Uses of ExecutionContext in org.smooks.io.source
Methods in org.smooks.io.source with parameters of type ExecutionContext Modifier and Type Method Description static Source
FilterSource. getSource(ExecutionContext executionContext)
static void
FilterSource. setSource(ExecutionContext executionContext, Source source)
-
Uses of ExecutionContext in org.smooks.management
Methods in org.smooks.management with parameters of type ExecutionContext Modifier and Type Method Description protected <T extends Visitor>
voidInstrumentationInterceptor. manageVisit(AbstractInterceptorVisitor.Invocation<T> invocation, Node node, ExecutionContext executionContext)
void
DefaultInstrumentationResource. onPostFilter(ExecutionContext executionContext)
void
DefaultInstrumentationResource. onPreFilter(ExecutionContext executionContext)
void
InstrumentationInterceptor. visitAfter(Element element, ExecutionContext executionContext)
void
InstrumentationInterceptor. visitBefore(Element element, ExecutionContext executionContext)
void
InstrumentationInterceptor. visitChildElement(Element childElement, ExecutionContext executionContext)
void
InstrumentationInterceptor. visitChildText(CharacterData characterData, ExecutionContext executionContext)
-
Uses of ExecutionContext in org.smooks.support
Methods in org.smooks.support with parameters of type ExecutionContext Modifier and Type Method Description static String
SmooksUtil. filterAndSerialize(ExecutionContext executionContext, InputStream stream, Smooks smooks)
Utility method to filter the content in the specifiedInputStream
for the specifiedExecutionContext
.static Map<String,Object>
FreeMarkerUtils. getMergedModel(ExecutionContext executionContext)
Get a "merged" model for FreeMarker templating.static String
MultiLineToStringBuilder. toString(ExecutionContext executionContext)
Creates a multi line JSON like string for the execution context
-