Class QpidJmsRuntimeConfig
- java.lang.Object
-
- org.amqphub.quarkus.qpid.jms.runtime.QpidJmsRuntimeConfig
-
@ConfigRoot(name="qpid-jms", phase=RUN_TIME) public class QpidJmsRuntimeConfig extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static StringDEFAULT_URLOptional<String>passwordPassword to optionally be set on the factoryStringurlConnection URL for the factoryOptional<String>usernameUsername to optionally be set on the factorybooleanwrapWhether to wrap a ConnectionFactory by ConnectionFactoryWrapper which could be introduced by other extensions, such as quarkus-pooled-jms to provide pooling capability
-
Constructor Summary
Constructors Constructor Description QpidJmsRuntimeConfig()
-
-
-
Field Detail
-
DEFAULT_URL
public static final String DEFAULT_URL
- See Also:
- Constant Field Values
-
url
@ConfigItem(defaultValue="amqp://localhost:5672") public String url
Connection URL for the factory
-
wrap
@ConfigItem(defaultValue="false") public 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
-
-