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

database.schema.DatabaseSchema Maven / Gradle / Ivy

package database.schema;

import databaseconnector.api.sql.SQLSchema;
import databaseconnector.api.sql.SQLTable;

import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;

public class DatabaseSchema implements SQLSchema {
    @Override
    public Set getTables() {
        return new HashSet<>(Arrays.asList(
                new ProductTable(),
                new ProductPriceTable(),
                new CurrencyTable(),
                new CollectorPluginTable()
        ));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy