io.rtr.alchemy.service.config.StoreProviderConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alchemy-service Show documentation
Show all versions of alchemy-service Show documentation
REST service for hosting Alchemy as a service
package io.rtr.alchemy.service.config;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import io.rtr.alchemy.db.ExperimentsStoreProvider;
/**
* Base configuration object for creating store providers for experiments
*/
@JsonTypeInfo(use = JsonTypeInfo.Id.CLASS, include = JsonTypeInfo.As.PROPERTY, property = "type")
public abstract class StoreProviderConfiguration {
public abstract ExperimentsStoreProvider createProvider() throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy