Example usage for org.springframework.jms.support.converter MessageConverter getClass

List of usage examples for org.springframework.jms.support.converter MessageConverter getClass

Introduction

In this page you can find the example usage for org.springframework.jms.support.converter MessageConverter getClass.

Prototype

@HotSpotIntrinsicCandidate
public final native Class<?> getClass();

Source Link

Document

Returns the runtime class of this Object .

Usage

From source file:com.kinglcc.spring.jms.core.converter.GenericJmsMessageConverter.java

private void setConverterOnMessage(Message message, MessageConverter converter) throws JMSException {
    message.setStringProperty(CONVERTER_PROP, converter.getClass().getName());
}