All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sklsft.commons.jms.annotations.JmsObjectSender Maven / Gradle / Ivy

package org.sklsft.commons.jms.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * will be used to intercept a JMS Object sender
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(value = ElementType.METHOD)
public @interface JmsObjectSender {

	/**
	 * will be used to name the interface
	 */
	String destination();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy