ARTEMIS-3690 add missing getters/setters to RA ConnectionFactory

This commit is contained in:
Kerner, Dr. Patrick 2022-02-24 09:28:14 +01:00 committed by Justin Bertram
parent 82e82cf323
commit 72573d5ab0
No known key found for this signature in database
GPG Key ID: F41830B875BB8633
1 changed files with 16 additions and 0 deletions

View File

@ -718,6 +718,22 @@ public final class ActiveMQRAManagedConnectionFactory implements ManagedConnecti
mcfProperties.setHA(ha); 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. * Get the useTryLock.