Oracle GlassFish(tm) Server Message Queue
5.0

javax.jms
Annotation Type JMSDestinationDefinition


@Target(value=TYPE)
@Retention(value=RUNTIME)
public @interface JMSDestinationDefinition

Annotation used to define a Java Message Service (JMS) destination and be registered with JNDI. The JMSDestination may be configured by setting the annotation elements for commonly used JMSDestination properties. Additional standard and vendor-specific properties may be specified using the properties element. Once defined, a destination resource may be referenced by a component using the lookup element of the Resource annotation.

See Also:
javax.annotation.Resource

Required Element Summary
 java.lang.String className
          JMS destination implementation class name which implements: javax.jms.Queue or javax.jms.Topic
 java.lang.String name
          JNDI name of the destination resource being defined.
 
Optional Element Summary
 java.lang.String description
          Description of this JMS Destination.
 java.lang.String destinationName
          Name of the queue or topic.
 java.lang.String[] properties
          JMS destination property.
 java.lang.String resourceAdapterName
          Resource adapter name.
 

Element Detail

name

public abstract java.lang.String name
JNDI name of the destination resource being defined.


className

public abstract java.lang.String className
JMS destination implementation class name which implements: javax.jms.Queue or javax.jms.Topic

description

public abstract java.lang.String description
Description of this JMS Destination.

Default:
""

resourceAdapterName

public abstract java.lang.String resourceAdapterName
Resource adapter name.

Default:
""

destinationName

public abstract java.lang.String destinationName
Name of the queue or topic.

Default:
""

properties

public abstract java.lang.String[] properties
JMS destination property. This may be a vendor-specific property or a less commonly used ConnectionFactory property.

Properties are specified using the format: propertyName=propertyValue with one property per array element.

Default:
{}

Oracle GlassFish(tm) Server Message Queue
5.0

Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.