org.axonframework.serializer.converters
Class ByteArrayToInputStreamConverter

java.lang.Object
  extended by org.axonframework.serializer.AbstractContentTypeConverter<byte[],InputStream>
      extended by org.axonframework.serializer.converters.ByteArrayToInputStreamConverter
All Implemented Interfaces:
ContentTypeConverter<byte[],InputStream>

public class ByteArrayToInputStreamConverter
extends AbstractContentTypeConverter<byte[],InputStream>

ContentTypeConverter that converts byte arrays into InputStream. More specifically, it returns an ByteArrayInputStream with the underlying byte[] is backing data.

Since:
2.0
Author:
Allard Buijze

Constructor Summary
ByteArrayToInputStreamConverter()
           
 
Method Summary
 InputStream convert(byte[] original)
          Converts the given object into another.
 Class<byte[]> expectedSourceType()
          The expected type of input data.
 Class<InputStream> targetType()
          The returned type of IntermediateRepresentation
 
Methods inherited from class org.axonframework.serializer.AbstractContentTypeConverter
convert
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ByteArrayToInputStreamConverter

public ByteArrayToInputStreamConverter()
Method Detail

expectedSourceType

public Class<byte[]> expectedSourceType()
Description copied from interface: ContentTypeConverter
The expected type of input data.

Returns:
the expected data format in IntermediateRepresentation

targetType

public Class<InputStream> targetType()
Description copied from interface: ContentTypeConverter
The returned type of IntermediateRepresentation

Returns:
the output data format in IntermediateRepresentation

convert

public InputStream convert(byte[] original)
Description copied from interface: ContentTypeConverter
Converts the given object into another. Typically, these values are contained by a SerializedObject instance.

Parameters:
original - the value to convert
Returns:
the converted value


Copyright © 2010-2016. All Rights Reserved.