private boolean isLazyHydratable(BpelProcess process) {
   if (process.isHydrationLazySet()) {
     return process.isHydrationLazy();
   }
   if (!_hydrationLazy) {
     return false;
   }
   return process.getEstimatedHydratedSize() < _hydrationLazyMinimumSize;
 }