diff --git a/artemis-ra/src/main/java/org/apache/activemq/artemis/ra/ActiveMQRAManagedConnectionFactory.java b/artemis-ra/src/main/java/org/apache/activemq/artemis/ra/ActiveMQRAManagedConnectionFactory.java index be2671280b..bdd7d06d98 100644 --- a/artemis-ra/src/main/java/org/apache/activemq/artemis/ra/ActiveMQRAManagedConnectionFactory.java +++ b/artemis-ra/src/main/java/org/apache/activemq/artemis/ra/ActiveMQRAManagedConnectionFactory.java @@ -718,6 +718,22 @@ public final class ActiveMQRAManagedConnectionFactory implements ManagedConnecti mcfProperties.setHA(ha); } + public Boolean isCompressLargeMessage() { + return mcfProperties.isCompressLargeMessage(); + } + + public void setCompressLargeMessage(final Boolean compressLargeMessage) { + mcfProperties.setCompressLargeMessage(compressLargeMessage); + } + + public Integer getInitialConnectAttempts() { + return mcfProperties.getInitialConnectAttempts(); + } + + public void setInitialConnectAttempts(final Integer initialConnectAttempts) { + mcfProperties.setInitialConnectAttempts(initialConnectAttempts); + } + /** * Get the useTryLock.