All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.rtr.alchemy.service.config.StoreProviderConfiguration Maven / Gradle / Ivy

The newest version!
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