Annotation Type EnableForJms.Inbound

Enclosing class:
EnableForJms

@Retention(RUNTIME)
public static @interface EnableForJms.Inbound
  • Required Element Summary

    Required Elements
    Modifier and Type Required Element Description
    At value
    Destination of the incoming messages.
  • Optional Element Summary

    Optional Elements
    Modifier and Type Optional Element Description
    java.lang.String autoStartup
    Specifies whether the listener should be started automatically.
    java.lang.String concurrency  
    boolean durable  
    java.lang.String name
    The bean name of the endpoint.
    java.lang.Class<?>[] scan  
    boolean shared  
    java.lang.String subscriptionName
    Defines the subscription name to be used with a Topic consumer.
  • Element Details

    • value

      At value
      Destination of the incoming messages.
    • scan

      java.lang.Class<?>[] scan
      Default:
      {}
    • concurrency

      java.lang.String concurrency
      Default:
      "0"
    • name

      java.lang.String name
      The bean name of the endpoint.
      Default:
      ""
    • autoStartup

      java.lang.String autoStartup
      Specifies whether the listener should be started automatically.

      Supports Spring property.

      Default:
      "true"
    • shared

      boolean shared
      Default:
      true
    • durable

      boolean durable
      Default:
      true
    • subscriptionName

      java.lang.String subscriptionName
      Defines the subscription name to be used with a Topic consumer.

      Only applicable to Topic's.

      Supports Spring property.

      Default:
      ""