public Sail getSail(SailImplConfig config)
throws StoreConfigException
{
if (!SAIL_TYPE.equals(config.getType())) {
throw new StoreConfigException("Invalid Sail type: " + config.getType());
}
MemoryStore memoryStore = new MemoryStore();
if (config instanceof MemoryStoreConfig) {