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

com.smattme.TablesResponse Maven / Gradle / Ivy

Go to download

This is a simple library for backing up mysql databases and sending to emails, cloud storage and so on. It also provide a method for programmatically, importing SQL queries generated during the export process,

There is a newer version: 1.3.0
Show newest version
package com.smattme;

import java.util.List;

public class TablesResponse {

    private List tables;
    private List views;

    public TablesResponse() { }

    public TablesResponse(List tables, List views) {
        this.tables = tables;
        this.views = views;
    }

    public List getTables() {
        return tables;
    }

    public List getViews() {
        return views;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy