This commit is contained in:
Max Dor
2018-10-10 02:10:48 +02:00
parent f16eb264be
commit f7d1a300f1
3 changed files with 21 additions and 3 deletions

View File

@@ -105,6 +105,7 @@ public class WordpressConfig {
private String type;
private String connection;
private String tablePrefix;
private Query query;
public String getType() {
@@ -123,6 +124,14 @@ public class WordpressConfig {
this.connection = connection;
}
public String getTablePrefix() {
return tablePrefix;
}
public void setTablePrefix(String tablePrefix) {
this.tablePrefix = tablePrefix;
}
public Query getQuery() {
return query;
}