DefaultLogicFactory constructor

DefaultLogicFactory()

Create a new instance of the factory.

Implementation

DefaultLogicFactory() : super() {
  registerAsType(DefaultLogicFactory.NullCacheDescriptor, NullCache);
  registerAsType(DefaultLogicFactory.MemoryCacheDescriptor, MemoryCache);
  registerAsType(DefaultLogicFactory.NullLockDescriptor, NullLock);
  registerAsType(DefaultLogicFactory.MemoryLockDescriptor, MemoryLock);
  registerAsType(
      DefaultLogicFactory.NullStateStoreDescriptor, NullStateStore);
  registerAsType(
      DefaultLogicFactory.MemoryStateStoreDescriptor, MemoryStateStore);
}