return cache;
}
protected ReadyEntityCache createEntityCache(EntityBeanComponentCreateService ejbComponentCreateService) {
if (optimisticLocking == null || !optimisticLocking) {
return new ReferenceCountingEntityCache(this);
} else {
return new TransactionLocalEntityCache(this);
}
}