public void stop(final StopContext context) {
transactionSetupProvider = null;
}
public TransactionSetupProvider getValue() throws IllegalStateException {
final TransactionSetupProvider value = this.transactionSetupProvider;
if (value == null) {
throw TransactionLogger.ROOT_LOGGER.transactionSetupProviderServiceNotStarted();
}
return value;
}