Interface ActiveMqClassicConfigurationProperties


@ConfigurationProperties("micronaut.jms.activemq.classic") @Requires(property="micronaut.jms.activemq.classic.enabled", value="true") public interface ActiveMqClassicConfigurationProperties
Configuration properties for creating the ActiveMQ Classic JMSConnectionFactory.
Since:
1.0.0
Author:
Elliott Pope
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Prefix for ActiveMQ Classic JMS settings.
  • Method Summary

    Modifier and Type
    Method
    Description
    @NotBlank String
    The connection string to identify the broker URL, e.g.
    @Nullable String
    The password.
    @Nullable String
    The username.
    boolean
    Whether ActiveMQ Classic is active.
  • Field Details

  • Method Details

    • isEnabled

      boolean isEnabled()
      Whether ActiveMQ Classic is active.
      Returns:
      true to activate the ActiveMQ Classic JMS implementation
    • getConnectionString

      @NotBlank @NotBlank String getConnectionString()
      The connection string to identify the broker URL, e.g. vm://localhost or tcp://my-activemq-cluster:61616.
      Returns:
      the connection string
    • getUsername

      @Nullable @Nullable String getUsername()
      The username.
      Returns:
      the username
    • getPassword

      @Nullable @Nullable String getPassword()
      The password.
      Returns:
      the password