org.springframework.jms.support.destination.DynamicDestinationResolver Java Examples

The following examples show how to use org.springframework.jms.support.destination.DynamicDestinationResolver. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: JmsInvokerClientInterceptor.java    From spring-analysis-note with MIT License 2 votes vote down vote up
/**
 * Set the DestinationResolver that is to be used to resolve Queue
 * references for this accessor.
 * <p>The default resolver is a {@code DynamicDestinationResolver}. Specify a
 * {@code JndiDestinationResolver} for resolving destination names as JNDI locations.
 * @see org.springframework.jms.support.destination.DynamicDestinationResolver
 * @see org.springframework.jms.support.destination.JndiDestinationResolver
 */
public void setDestinationResolver(@Nullable DestinationResolver destinationResolver) {
	this.destinationResolver =
			(destinationResolver != null ? destinationResolver : new DynamicDestinationResolver());
}
 
Example #2
Source File: JmsInvokerClientInterceptor.java    From java-technology-stack with MIT License 2 votes vote down vote up
/**
 * Set the DestinationResolver that is to be used to resolve Queue
 * references for this accessor.
 * <p>The default resolver is a {@code DynamicDestinationResolver}. Specify a
 * {@code JndiDestinationResolver} for resolving destination names as JNDI locations.
 * @see org.springframework.jms.support.destination.DynamicDestinationResolver
 * @see org.springframework.jms.support.destination.JndiDestinationResolver
 */
public void setDestinationResolver(@Nullable DestinationResolver destinationResolver) {
	this.destinationResolver =
			(destinationResolver != null ? destinationResolver : new DynamicDestinationResolver());
}
 
Example #3
Source File: JmsInvokerClientInterceptor.java    From spring4-understanding with Apache License 2.0 2 votes vote down vote up
/**
 * Set the DestinationResolver that is to be used to resolve Queue
 * references for this accessor.
 * <p>The default resolver is a {@code DynamicDestinationResolver}. Specify a
 * {@code JndiDestinationResolver} for resolving destination names as JNDI locations.
 * @see org.springframework.jms.support.destination.DynamicDestinationResolver
 * @see org.springframework.jms.support.destination.JndiDestinationResolver
 */
public void setDestinationResolver(DestinationResolver destinationResolver) {
	this.destinationResolver =
			(destinationResolver != null ? destinationResolver : new DynamicDestinationResolver());
}