return cachedJTRs.get(new Key(opInfo));
}
public void moveToProjectCache(WebServiceCall ws, InputAndOutputMappingTreeStructureCache projectCache) {
WebServiceOperationInfo opInfo = ws.getOperationInfo();
WebServiceCallStructures structures = get(opInfo);
if (structures == null) {
return;
}
writeRequestStructureToProjectCache(ws, structures.request(), projectCache);
writeResponseStructureToProjectCache(ws, structures.response(), projectCache);
}