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

com.github.lontime.extjooq.configuration.Options Maven / Gradle / Ivy

The newest version!
package com.github.lontime.extjooq.configuration;

import com.github.lontime.base.commonj.constants.Consts;
import org.jooq.conf.Settings;

/**
 * Options.
 * @author lontime
 * @since 1.0
 */
public class Options extends Settings {

    private String name = Consts.DEFAULT_OBJECT_NAME;

    private String dbGroupName;

    public String getDbGroupName() {
        return dbGroupName;
    }

    public void setDbGroupName(String dbGroupName) {
        this.dbGroupName = dbGroupName;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy