Example usage for org.springframework.jms.config MethodJmsListenerEndpoint MethodJmsListenerEndpoint

List of usage examples for org.springframework.jms.config MethodJmsListenerEndpoint MethodJmsListenerEndpoint

Introduction

In this page you can find the example usage for org.springframework.jms.config MethodJmsListenerEndpoint MethodJmsListenerEndpoint.

Prototype

MethodJmsListenerEndpoint

Source Link

Usage

From source file:org.springframework.jms.annotation.JmsListenerAnnotationBeanPostProcessor.java

/**
 * Instantiate an empty {@link MethodJmsListenerEndpoint} for further
 * configuration with provided parameters in {@link #processJmsListener}.
 * @return a new {@code MethodJmsListenerEndpoint} or subclass thereof
 * @since 4.1.9//from  ww w .  j a  v a  2s .  c o m
 * @see MethodJmsListenerEndpoint#createMessageListenerInstance()
 */
protected MethodJmsListenerEndpoint createMethodJmsListenerEndpoint() {
    return new MethodJmsListenerEndpoint();
}