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

com.jfirer.jsql.dbstructure.SchemaAdjustment Maven / Gradle / Ivy

package com.jfirer.jsql.dbstructure;

import com.jfirer.jsql.metadata.TableEntityInfo;
import com.jfirer.jsql.metadata.TableMode;

import javax.sql.DataSource;
import java.sql.SQLException;
import java.util.Set;
import java.util.concurrent.atomic.AtomicInteger;

public interface SchemaAdjustment
{
    AtomicInteger count = new AtomicInteger(0);

    void adjust(TableMode mode, DataSource dataSource, Set tableEntityInfos) throws SQLException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy