@Target(value=TYPE) @Retention(value=RUNTIME) public @interface JMSDestinationDefinition
Destination
resource that it requires in its operational environment. This provides information that can be used at
the application's deployment to provision the required resource and allows an application to be deployed into a Java
EE environment with more minimal administrative configuration.
The Destination
resource may be configured by setting the annotation elements for commonly used properties.
Additional properties may be specified using the properties
element. Once defined, a Destination
resource may be referenced by a component in the same way as any other Destination
resource, for example by
using the lookup
element of the Resource
annotation.
Resource
Modifier and Type | Required Element and Description |
---|---|
String |
interfaceName
Fully qualified name of the Jakarta Messaging destination interface.
|
String |
name
JNDI name of the destination resource being defined.
|
Modifier and Type | Optional Element and Description |
---|---|
String |
className
Fully-qualified name of the Jakarta Messaging destination implementation class.
|
String |
description
Description of this Jakarta Messaging destination.
|
String |
destinationName
Name of the queue or topic.
|
String[] |
properties
Jakarta Messaging destination property.
|
String |
resourceAdapter
Resource adapter name.
|
public abstract String name
public abstract String interfaceName
jakarta.jms.Queue
or
jakarta.jms.Topic
.public abstract String description
public abstract String className
public abstract String resourceAdapter
public abstract String destinationName
public abstract String[] properties
ConnectionFactory
property.
Properties are specified using the format: propertyName=propertyValue with one property per array element.
Copyright © 2018,2020 Eclipse Foundation.
Use is subject to license terms.