Uses of Interface
org.milyn.delivery.ContentHandler

Packages that use ContentHandler
org.milyn.cdr Smooks Configurations (Content Delivery Resources - CDR) Object Model. 
org.milyn.cdr.annotation   
org.milyn.cdr.extension Smooks Configuration Extension Classes. 
org.milyn.db   
org.milyn.delivery Content Delivery. 
org.milyn.delivery.dom DOM based Content Delivery. 
org.milyn.delivery.dom.serialize Serialisation Unit Definitions. 
org.milyn.delivery.java Java Content Delivery. 
org.milyn.delivery.sax SAX based Content Delivery. 
org.milyn.io   
org.milyn.javabean   
org.milyn.javabean.decoders Pre-installed data type decoders. 
org.milyn.xml XML helper classes. 
 

Uses of ContentHandler in org.milyn.cdr
 

Classes in org.milyn.cdr that implement ContentHandler
 class ParameterDecoder<T>
          Abstract Parameter Decoder.
 class PropertyListParameterDecoder
          ParameterDecoder used to convert a parameter String value to a list of Properties.
 class TokenizedStringParameterDecoder
          ParameterDecoder used to tokenize a parameter values into a List or HashSet.
 

Methods in org.milyn.cdr that return types with arguments of type ContentHandler
 List<ContentHandler> SmooksResourceConfigurationStore.getAllocatedHandlers()
           
 

Uses of ContentHandler in org.milyn.cdr.annotation
 

Methods in org.milyn.cdr.annotation with type parameters of type ContentHandler
static
<U extends ContentHandler>
U
Configurator.configure(U instance, SmooksResourceConfiguration config)
          Configure the supplied ContentHandler instance using the supplied SmooksResourceConfiguration isntance.
static
<U extends ContentHandler>
U
Configurator.configure(U instance, SmooksResourceConfiguration config, ApplicationContext appContext)
          Configure the supplied ContentHandler instance using the supplied SmooksResourceConfiguration and ApplicationContext instances.
static
<U extends ContentHandler>
void
Configurator.uninitialise(U instance)
           
 

Uses of ContentHandler in org.milyn.cdr.extension
 

Classes in org.milyn.cdr.extension that implement ContentHandler
 class CloneResourceConfig
          Create a new SmooksResourceConfiguration by cloning the current resource.
 class MapToResourceConfigFromAttribute
          Map a property value onto the current SmooksResourceConfiguration based on an element attribute value.
 class MapToResourceConfigFromParentConfig
          Map a property value from a parent SmooksResourceConfiguration and onto the current SmooksResourceConfiguration.
 class MapToResourceConfigFromText
          Map a property value onto the current SmooksResourceConfiguration based on an elements text content.
 class NewResourceConfig
          Create a new SmooksResourceConfiguration.
 class SetOnResourceConfig
          Set a static value on the current SmooksResourceConfiguration.
 

Uses of ContentHandler in org.milyn.db
 

Classes in org.milyn.db that implement ContentHandler
 class AbstractDataSource
          DataSource management resource.
 class DirectDataSource
          Direct DataSource.
 class JndiDataSource
          Jndi based DataSource.
 

Uses of ContentHandler in org.milyn.delivery
 

Classes in org.milyn.delivery with type parameters of type ContentHandler
 class ContentHandlerConfigMap<T extends ContentHandler>
          Mapping between a resource configuration and its corresponding resource configuration.
 class ContentHandlerConfigMapTable<T extends ContentHandler>
          Simple table for storing ContentHandlerConfigMap lists against a selector string.
 

Subinterfaces of ContentHandler in org.milyn.delivery
 interface ConfigurationExpander
          Interface to allow configuration expansion.
 interface ContentDeliveryUnit
          Deprecated. Use ContentHandler.
 interface ContentHandlerFactory
          ContentHandler factory interface.
 interface Visitor
          Abstract Visitor interface.
 

Classes in org.milyn.delivery that implement ContentHandler
 class DomModelCreator
          DOM Node Model creator.
 class JavaContentHandlerFactory
          Java ContentHandler instance creator.
 

Methods in org.milyn.delivery that return ContentHandler
 ContentHandler JavaContentHandlerFactory.create(SmooksResourceConfiguration resourceConfig)
          Create a Java based ContentHandler instance.
 ContentHandler ContentHandlerFactory.create(SmooksResourceConfiguration resourceConfig)
          Create the ContentHandler instance.
 

Methods in org.milyn.delivery with parameters of type ContentHandler
protected static boolean ContentDeliveryConfigBuilder.visitAfterAnnotationsOK(SmooksResourceConfiguration resourceConfig, ContentHandler contentHandler)
           
protected static boolean ContentDeliveryConfigBuilder.visitBeforeAnnotationsOK(SmooksResourceConfiguration resourceConfig, ContentHandler contentHandler)
           
 

Uses of ContentHandler in org.milyn.delivery.dom
 

Subinterfaces of ContentHandler in org.milyn.delivery.dom
 interface DOMElementVisitor
          Element Visitor (GoF) interface for DOM.
 interface DOMVisitAfter
          DOM Visit after events.
 interface DOMVisitBefore
          DOM Visit before events.
 interface DOMVisitor
          DOM Visitor.
 

Uses of ContentHandler in org.milyn.delivery.dom.serialize
 

Subinterfaces of ContentHandler in org.milyn.delivery.dom.serialize
 interface SerializationUnit
          W3C Node Serailization interface definition.
 

Classes in org.milyn.delivery.dom.serialize that implement ContentHandler
 class ContextObjectSerializationUnit
          ExecutionContext object serializer.
 class DefaultSerializationUnit
          Default SerializationUnit implementation.
 class GhostElementSerializationUnit
          Ghost element serialization unit.
 

Uses of ContentHandler in org.milyn.delivery.java
 

Subinterfaces of ContentHandler in org.milyn.delivery.java
 interface JavaXMLReader
          Java XMLReader for Smooks.
 

Classes in org.milyn.delivery.java that implement ContentHandler
 class XStreamXMLReader
          XStream based JavaXMLReader.
 

Uses of ContentHandler in org.milyn.delivery.sax
 

Subinterfaces of ContentHandler in org.milyn.delivery.sax
 interface SAXElementVisitor
          SAX Element Visitor.
 interface SAXVisitAfter
          SAX Visit after events.
 interface SAXVisitBefore
          SAX Visit before events.
 interface SAXVisitChildren
          SAX Visit children events.
 interface SAXVisitor
          SAX Visitor.
 

Classes in org.milyn.delivery.sax that implement ContentHandler
 class DefaultSAXElementSerializer
          Default Serializer for SAX Filtering.
 

Uses of ContentHandler in org.milyn.io
 

Classes in org.milyn.io that implement ContentHandler
 class AbstractOutputStreamResource
          AbstractOuputStreamResource is the base class for handling output stream resources in Smooks.
 

Uses of ContentHandler in org.milyn.javabean
 

Subinterfaces of ContentHandler in org.milyn.javabean
 interface DataDecoder
          Data decoder.
 

Uses of ContentHandler in org.milyn.javabean.decoders
 

Classes in org.milyn.javabean.decoders that implement ContentHandler
 class BigDecimalDecoder
          BigDecimal Decoder.
 class BigIntegerDecoder
          BigInteger Decoder.
 class BooleanDecoder
          Boolean decoder.
 class ByteDecoder
          Byte Decoder
 class CalendarDecoder
          Calendar data decoder.
 class CharacterDecoder
          Character data decoder.
 class CharsetDecoder
          String data decoder.
 class ClassDecoder
          Class decoder.
 class CSVDecoder
          Comma Separated Value (CSV) decoder.
 class DateDecoder
          Date data decoder.
 class DoubleDecoder
          Double decoder.
 class EnumDecoder
          Enum instance decoder.
 class FileDecoder
          File decoder.
 class FloatDecoder
          Float decoder.
 class FreeMarkerTemplateDecoder
          FreeMarkerTemplate data decoder impl.
 class IntegerDecoder
          Integer Decoder.
 class LongDecoder
          Long decoder.
 class MappingDecoder
          Mapping decoder.
 class MVELExpressionEvaluatorDecoder
          MVELExpressionEvaluator data decoder impl.
 class ShortDecoder
          Short Decoder
 class SqlDateDecoder
          Date data decoder.
 class SqlTimeDecoder
          Time data decoder.
 class StringDecoder
          String data decoder.
 class URIDecoder
          URI Decoder.
 class URLDecoder
          URL Decoder.
 

Uses of ContentHandler in org.milyn.xml
 

Subinterfaces of ContentHandler in org.milyn.xml
 interface SmooksXMLReader
          Smooks XMLReader.
 

Classes in org.milyn.xml that implement ContentHandler
 class NullSourceXMLReader
          Null Source reader.
 



Copyright © 2008. All Rights Reserved.