LOG.debug("Waiting for root gateway to initialise.");
while (!status.isInitialised())
{
if (status.isError()) {
throw new ActivityUserException(
new RequestInitialisationFailedException());
}
Thread.sleep(pollInterval);
status = gateway.getStatus();
}
LOG.debug("Received address of data transfer.");