public synchronized void setFailureRetryInterval(final long interval) { checkBridgeNotStarted(); if (interval < 1) { throw new IllegalArgumentException("FailureRetryInterval must be >= 1"); } failureRetryInterval = interval; }
public synchronized void setTargetConnectionFactoryFactory(final ConnectionFactoryFactory cff) { checkBridgeNotStarted(); JMSBridgeImpl.checkNotNull(cff, "TargetConnectionFactoryFactory"); targetCff = cff; }
public void setTransactionManagerLocatorClass(final String transactionManagerLocatorClass) { checkBridgeNotStarted(); this.transactionManagerLocatorClass = transactionManagerLocatorClass; }
public synchronized void setClientID(final String clientID) { checkBridgeNotStarted(); this.clientID = clientID; }
public synchronized void setSubscriptionName(final String subname) { checkBridgeNotStarted(); subName = subname; }
public synchronized void setMaxBatchTime(final long time) { checkBridgeNotStarted(); JMSBridgeImpl.checkValidValue(time, "MaxBatchTime"); maxBatchTime = time; }
public synchronized void setMaxBatchSize(final int size) { checkBridgeNotStarted(); JMSBridgeImpl.checkMaxBatchSize(size); maxBatchSize = size; }
public synchronized void setQualityOfServiceMode(final QualityOfServiceMode mode) { checkBridgeNotStarted(); JMSBridgeImpl.checkNotNull(mode, "QualityOfServiceMode"); qualityOfServiceMode = mode; }
public synchronized void setMaxRetries(final int retries) { checkBridgeNotStarted(); JMSBridgeImpl.checkValidValue(retries, "MaxRetries"); maxRetries = retries; }
public synchronized void setSelector(final String selector) { checkBridgeNotStarted(); this.selector = selector; }
public synchronized void setTargetPassword(final String pwd) { checkBridgeNotStarted(); targetPassword = pwd; }
public synchronized void setTargetUsername(final String name) { checkBridgeNotStarted(); targetUsername = name; }
public synchronized void setSourcePassword(final String pwd) { checkBridgeNotStarted(); sourcePassword = pwd; }
public synchronized void setSourceUsername(final String name) { checkBridgeNotStarted(); sourceUsername = name; }
public void setTargetDestinationFactory(final DestinationFactory dest) { checkBridgeNotStarted(); JMSBridgeImpl.checkNotNull(dest, "TargetDestinationFactory"); targetDestinationFactory = dest; }