package org.theonefx.wcframework.jdbc.easyjsql;
public class JoinEntry {
private String joinedTable;
private String onClause;
private JoinType type;
public JoinEntry(String joinedTable, String onClause){
this.joinedTable = joinedTable;
this.onClause = onClause;
}
public JoinEntry(String joinedTable, String onClause, JoinType type){
this(joinedTable, onClause);
this.type = type;
}
public String getJoinedTable() {
return joinedTable;
}
public void setJoinedTable(String joinedTable) {
this.joinedTable = joinedTable;
}
public String getOnClause() {
return onClause;
}
public void setOnClause(String onClause) {
this.onClause = onClause;
}
public JoinType getType() {
return type;
}
public void setType(JoinType type) {
this.type = type;
}
}