Example usage for org.springframework.jms.support.destination DestinationResolver DestinationResolver

List of usage examples for org.springframework.jms.support.destination DestinationResolver DestinationResolver

Introduction

In this page you can find the example usage for org.springframework.jms.support.destination DestinationResolver DestinationResolver.

Prototype

DestinationResolver

Source Link

Usage

From source file:com.ruyicai.msgcenter.jms.WithoutTMJmsConfiguration.java

public static DestinationResolver createDestinationResolver(final DestinationEndpoint destinationEndpoint) {
    return new DestinationResolver() {
        public Destination resolveDestinationName(Session session, String destinationName, boolean pubSubDomain)
                throws JMSException {
            return destinationEndpoint.getJmsDestination(session);
        }//from   w  w w.j a  v  a  2 s  .  c o m
    };
}