Interface QpidJmsRuntimeConfig


@ConfigMapping(prefix="quarkus.qpid-jms") @ConfigRoot(phase=RUN_TIME) public interface QpidJmsRuntimeConfig
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Password to optionally be set on the factory
    url()
    Connection URL for the factory
    Username to optionally be set on the factory
    boolean
    Whether to wrap a ConnectionFactory by ConnectionFactoryWrapper which could be introduced by other extensions, such as quarkus-pooled-jms to provide pooling capability
  • Field Details

  • Method Details

    • url

      @WithDefault("amqp://localhost:5672") String url()
      Connection URL for the factory
    • username

      Optional<String> username()
      Username to optionally be set on the factory
    • password

      Optional<String> password()
      Password to optionally be set on the factory
    • wrap

      @WithDefault("false") boolean wrap()
      Whether to wrap a ConnectionFactory by ConnectionFactoryWrapper which could be introduced by other extensions, such as quarkus-pooled-jms to provide pooling capability