ARTEMIS-3690 add missing getters/setters to RA ConnectionFactory
This commit is contained in:
parent
82e82cf323
commit
72573d5ab0
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue