org.controlhaus.jms
Annotation Type JMSControl.PropertyValue


@Target(value=METHOD)
@Retention(value=RUNTIME)
public static @interface JMSControl.PropertyValue

The method parameter representing a message property with the given name and value. see javax.jms.Message.getProperty()/setProperty().


Required Element Summary
 String name
          The property name.
 String value
          The property value.
 
Optional Element Summary
 Class type
          The property type.
 

Element Detail

name

public abstract String name
The property name.


value

public abstract String value
The property value.

type

public abstract Class type
The property type.

Default:
java.lang.String.class