asynchronousFacadeFields = new AsynchronousFacadeFieldsThreadLocalImpl();
return asynchronousFacadeFields;
return getAsynchronousFacadeFields().getAsynchronousTask();
return getAsynchronousFacadeFields().getId();
return getResponseCode(getAsynchronousTask());
return (waitForResponse(synchronousTask).getResponseCode());
return getReturnValue(getAsynchronousTask());
if (asynchronousTask == null) return null; AsynchronousResponse asynchronousResponse = waitForResponse(asynchronousTask); if (asynchronousResponse.getResponseCode() == OK) return asynchronousResponse.getResult(); else return null;
return getAsynchronousTask().getResponse();
return getAsynchronousFacadeFields().getTimeout();
return isDone(getAsynchronousTask());
if (synchronousTask == null) return false; else return synchronousTask.isDone();
getAsynchronousFacadeFields().setAsynchronousTask(asynchronousTask);
getAsynchronousFacadeFields().setId(id);
getAsynchronousFacadeFields().setTimeout(timeout);
return waitForResponse(getAsynchronousTask());
if (asynchronousTask.getResponse().getResponseCode() == AsynchronousConstants.OK) { AsynchronousResponse atask = (AsynchronousResponse) asynchronousTask .getResponse() .getResult(); return atask; } return asynchronousTask.getResponse();