use of org.mule.runtime.core.internal.transformer.simple.ObjectToByteArray in project mule by mulesoft.
the class TypeBasedTransformerResolver method initialise.
@Override
public void initialise() throws InitialisationException {
try {
objectToString = new ObjectToString();
objectToByteArray = new ObjectToByteArray();
// these are just fallbacks that are not to go
// into the mule registry
initialiseIfNeeded(objectToString, muleContext);
initialiseIfNeeded(objectToByteArray, muleContext);
} catch (MuleException e) {
throw new InitialisationException(e, this);
}
}
Aggregations