@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 |
className
JMS destination implementation class name which implements:
javax.jms.Queue or javax.jms.Topic |
String |
name
JNDI name of the destination resource being defined.
|
| Modifier and Type | Optional Element and Description |
|---|---|
String |
description
Description of this JMS Destination.
|
String |
destinationName
Name of the queue or topic.
|
String[] |
properties
JMS destination property.
|
String |
resourceAdapterName
Resource adapter name.
|
public abstract String name
public abstract String className
javax.jms.Queue or javax.jms.Topicpublic abstract String description
public abstract String resourceAdapterName
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 © 2013. All Rights Reserved.