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

javax.ejb.ActivationConfigProperty Maven / Gradle / Ivy

The newest version!
package javax.ejb;

import java.lang.annotation.Retention;
import static java.lang.annotation.RetentionPolicy.*;
import java.lang.annotation.Target;

/**
 * Annotation for adding properties to messaging bean annotations (i.e. @MessageDriven, @Consumer)
 * 
 * @author Bill Burke
 * @version $Revision$
 */
@Retention(RUNTIME)
@Target({})
public @interface ActivationConfigProperty
{
   String propertyName();

   String propertyValue();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy