// XTS expects the TCCL to be set to something that will locate the XTS service implementation classes.
final ClassLoader loader = TxBridgeInboundRecoveryService.class.getClassLoader();
SecurityActions.setContextLoader(loader);
try {
InboundBridgeRecoveryManager service = new InboundBridgeRecoveryManager();
try {
service.start();
} catch (Exception e) {
throw new StartException("TxBridge inbound recovery service start failed", e);
}
inboundBridgeRecoveryManager = service;
} finally {