Spring AMQP

org.springframework.amqp.support.converter
Interface JavaTypeMapper

All Superinterfaces:
ClassMapper
All Known Implementing Classes:
DefaultJavaTypeMapper

public interface JavaTypeMapper
extends ClassMapper

Strategy for setting metadata on messages such that one can create the class that needs to be instantiated when receiving a message.

Author:
Mark Pollack, James Carr, Sam Nelson

Method Summary
 void fromJavaType(org.codehaus.jackson.type.JavaType javaType, MessageProperties properties)
           
 org.codehaus.jackson.type.JavaType toJavaType(MessageProperties properties)
           
 
Methods inherited from interface org.springframework.amqp.support.converter.ClassMapper
fromClass, toClass
 

Method Detail

fromJavaType

void fromJavaType(org.codehaus.jackson.type.JavaType javaType,
                  MessageProperties properties)

toJavaType

org.codehaus.jackson.type.JavaType toJavaType(MessageProperties properties)

Spring AMQP