com.smattme.TablesResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mysql-backup4j Show documentation
Show all versions of mysql-backup4j Show documentation
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,
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