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

me.legrange.services.jooq.JooqConfig Maven / Gradle / Ivy

There is a newer version: 3.11.2
Show newest version
package me.legrange.services.jooq;

import javax.validation.constraints.NotNull;
import me.legrange.services.mysql.MySqlConfig;

/**
 *
 * @author matt
 */
public class JooqConfig {

    @NotNull(message = "MySQL Config is required")
    private MySqlConfig mysql;

    public MySqlConfig getMysql() {
        return mysql;
    }

    public void setMysql(MySqlConfig mysql) {
        this.mysql = mysql;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy