Package javax.jms
Annotation Type JMSDestinationDefinition
-
@Target(TYPE) @Retention(RUNTIME) public @interface JMSDestinationDefinition
An application may use this annotation to specify a Jakarta MessagingDestination
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 theproperties
element. Once defined, aDestination
resource may be referenced by a component in the same way as any otherDestination
resource, for example by using thelookup
element of theResource
annotation.- Since:
- JMS 2.0
- See Also:
javax.annotation.Resource
-
-
Required Element Summary
Required Elements Modifier and Type Required Element 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.
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element 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.
-
-
-
-
className
java.lang.String className
Fully-qualified name of the Jakarta Messaging destination implementation class. Ignored if a resource adapter is used unless the resource adapter defines more than one Jakarta Messaging destination implementation class for the specified interface.- Returns:
- The fully-qualified name of the Jakarta Messaging destination implementation class.
- Default:
- ""
-
-
-
properties
java.lang.String[] properties
Jakarta Messaging 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.
- Returns:
- The Jakarta Messaging destination properties.
- Default:
- {}
-
-