Package javax.jms
Annotation Interface JMSDestinationDefinition
An application may use this annotation to specify a JMS
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.
- Since:
- JMS 2.0
- See Also:
-
Required Element Summary
Modifier and TypeRequired ElementDescriptionFully qualified name of the JMS destination interface.JNDI name of the destination resource being defined. -
Optional Element Summary
Modifier and TypeOptional ElementDescriptionFully-qualified name of the JMS destination implementation class.Description of this JMS destination.Name of the queue or topic.String[]
JMS destination property.Resource adapter name.
-
Element Details
-
-
description
String descriptionDescription of this JMS destination.- Default:
- ""
-
className
String classNameFully-qualified name of the JMS destination implementation class. Ignored if a resource adapter is used unless the resource adapter defines more than one JMS destination implementation class for the specified interface- Default:
- ""
-
resourceAdapter
String resourceAdapterResource adapter name. If not specified then the application server will define the default behaviour, which may or may not involve the use of a resource adapter.- Default:
- ""
-
destinationName
String destinationNameName of the queue or topic.- Default:
- ""
-
properties
String[] propertiesJMS destination property. This may be a vendor-specific property or a less commonly usedConnectionFactory
property.Properties are specified using the format: propertyName=propertyValue with one property per array element.
- Default:
- {}
-