org.mule.module.json.transformers
Class AbstractJsonTransformer
java.lang.Object
org.mule.transformer.AbstractTransformer
org.mule.transformer.AbstractMessageAwareTransformer
org.mule.module.json.transformers.AbstractJsonTransformer
- All Implemented Interfaces:
- MuleContextAware, Initialisable, NamedObject, BaseTransformer, DiscoverableTransformer, Transformer
- Direct Known Subclasses:
- JsonToObject, ObjectToJson
public abstract class AbstractJsonTransformer
- extends AbstractMessageAwareTransformer
- implements DiscoverableTransformer
TODO
|
Method Summary |
org.codehaus.jackson.map.ObjectMapper |
getMapper()
|
Map<Class,Class> |
getMixins()
|
int |
getPriorityWeighting()
If 2 or more discoverable transformers are equal, this value can be used to select the correct one |
void |
initialise()
Template method where deriving classes can do any initialisation after the
properties have been set on this transformer |
void |
setMapper(org.codehaus.jackson.map.ObjectMapper mapper)
|
void |
setMixins(Map<Class,Class> mixins)
|
void |
setPriorityWeighting(int weighting)
If 2 or more discoverable transformers are equal, this value can be used to select the correct one |
| Methods inherited from class org.mule.transformer.AbstractTransformer |
checkReturnClass, generateTransformerName, getEncoding, getEndpoint, getName, getReturnClass, getReturnDataType, getSourceDataTypes, getSourceTypes, isAcceptNull, isConsumed, isIgnoreBadInput, isSourceDataTypeSupported, isSourceTypeSupported, isSourceTypeSupported, registerSourceType, registerSourceType, setEndpoint, setIgnoreBadInput, setMuleContext, setName, setReturnClass, setReturnDataType, toString, transform, transform, unregisterSourceType, unregisterSourceType |
weighting
protected int weighting
AbstractJsonTransformer
public AbstractJsonTransformer()
initialise
public void initialise()
throws InitialisationException
- Description copied from class:
AbstractTransformer
- Template method where deriving classes can do any initialisation after the
properties have been set on this transformer
- Specified by:
initialise in interface Initialisable- Overrides:
initialise in class AbstractTransformer
- Throws:
InitialisationException - if a fatal error occurs causing the Mule instance to shutdown
RecoverableException - if an error occurs that can be recovered from
getMapper
public org.codehaus.jackson.map.ObjectMapper getMapper()
setMapper
public void setMapper(org.codehaus.jackson.map.ObjectMapper mapper)
getPriorityWeighting
public int getPriorityWeighting()
- Description copied from interface:
DiscoverableTransformer
- If 2 or more discoverable transformers are equal, this value can be used to select the correct one
- Specified by:
getPriorityWeighting in interface DiscoverableTransformer
- Returns:
- the priority weighting for this transformer. This is a value between
DiscoverableTransformer.MIN_PRIORITY_WEIGHTING and DiscoverableTransformer.MAX_PRIORITY_WEIGHTING.
setPriorityWeighting
public void setPriorityWeighting(int weighting)
- Description copied from interface:
DiscoverableTransformer
- If 2 or more discoverable transformers are equal, this value can be used to select the correct one
- Specified by:
setPriorityWeighting in interface DiscoverableTransformer
- Parameters:
weighting - the priority weighting for this transformer. This is a value between
DiscoverableTransformer.MIN_PRIORITY_WEIGHTING and DiscoverableTransformer.MAX_PRIORITY_WEIGHTING.
getMixins
public Map<Class,Class> getMixins()
setMixins
public void setMixins(Map<Class,Class> mixins)
Copyright © 2003-2010 MuleSoft, Inc.. All Rights Reserved.