public SQLStateManager(PersistenceStore store, ClassDesc persistenceConfig) {
this.store = store;
this.persistenceConfig = persistenceConfig;
if (EJBHelper.isManaged()) {
this.lock = new NullSemaphore("SQLStateManager"); // NOI18N
} else {
this.lock = new SemaphoreImpl("SQLStateManager"); // NOI18N
}
}