@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 |
---|---|
java.lang.String |
interfaceName
Fully qualified name of the Jakarta Messaging destination interface.
|
java.lang.String |
name
JNDI name of the destination resource being defined.
|
Modifier and Type | Optional Element and Description |
---|---|
java.lang.String |
className
Fully-qualified name of the Jakarta Messaging destination implementation class.
|
java.lang.String |
description
Description of this Jakarta Messaging destination.
|
java.lang.String |
destinationName
Name of the queue or topic.
|
java.lang.String[] |
properties
Jakarta Messaging destination property.
|
java.lang.String |
resourceAdapter
Resource adapter name.
|
public abstract java.lang.String name
public abstract java.lang.String interfaceName
javax.jms.Queue
or
javax.jms.Topic
.public abstract java.lang.String description
public abstract java.lang.String className
public abstract java.lang.String resourceAdapter
public abstract java.lang.String destinationName
public abstract java.lang.String[] properties
ConnectionFactory
property.
Properties are specified using the format: propertyName=propertyValue with one property per array element.