Class DefaultStores
- java.lang.Object
-
- com.github.tomakehurst.wiremock.store.DefaultStores
-
- All Implemented Interfaces:
Stores
,StoresLifecycle
public class DefaultStores extends java.lang.Object implements Stores
-
-
Constructor Summary
Constructors Constructor Description DefaultStores(FileSource fileRoot)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BlobStore
getBlobStore(java.lang.String name)
RecorderStateStore
getRecorderStateStore()
RequestJournalStore
getRequestJournalStore()
ScenariosStore
getScenariosStore()
SettingsStore
getSettingsStore()
StubMappingStore
getStubStore()
void
start()
void
stop()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.github.tomakehurst.wiremock.store.Stores
getFilesBlobStore, getMappingsBlobStore
-
-
-
-
Constructor Detail
-
DefaultStores
public DefaultStores(FileSource fileRoot)
-
-
Method Detail
-
getStubStore
public StubMappingStore getStubStore()
- Specified by:
getStubStore
in interfaceStores
-
getRequestJournalStore
public RequestJournalStore getRequestJournalStore()
- Specified by:
getRequestJournalStore
in interfaceStores
-
getSettingsStore
public SettingsStore getSettingsStore()
- Specified by:
getSettingsStore
in interfaceStores
-
getScenariosStore
public ScenariosStore getScenariosStore()
- Specified by:
getScenariosStore
in interfaceStores
-
getRecorderStateStore
public RecorderStateStore getRecorderStateStore()
- Specified by:
getRecorderStateStore
in interfaceStores
-
getBlobStore
public BlobStore getBlobStore(java.lang.String name)
- Specified by:
getBlobStore
in interfaceStores
-
start
public void start()
- Specified by:
start
in interfaceStoresLifecycle
-
stop
public void stop()
- Specified by:
stop
in interfaceStoresLifecycle
-
-