@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 JMS 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 JMS destination implementation class.
|
String |
description
Description of this JMS destination.
|
String |
destinationName
Name of the queue or topic.
|
String[] |
properties
JMS destination property.
|
String |
resourceAdapter
Resource adapter name.
|
public abstract String name
public abstract String interfaceName
javax.jms.Queue
or
javax.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 © 1996-2013, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.