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

io.github.factoryfx.copperbridge.DBDialect Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package io.github.factoryfx.copperbridge;

import javax.sql.DataSource;

import org.copperengine.core.persistent.DatabaseDialect;
import org.copperengine.ext.wfrepo.classpath.ClasspathWorkflowRepository;

public class DBDialect {

    final DataSource dataSource;
    protected final ClasspathWorkflowRepository wfRepository;
    final DatabaseDialect dOra;

    public DBDialect(DataSource dataSource, ClasspathWorkflowRepository wfRepository, DatabaseDialect dOra) {
        this.dataSource = dataSource;
        this.wfRepository = wfRepository;
        this.dOra = dOra;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy