com.ivanceras.db.api.SchemaTable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orm Show documentation
Show all versions of orm Show documentation
ORM - Core Library for Database
/*******************************************************************************
* Copyright by CMIL
******************************************************************************/
package com.ivanceras.db.api;
public class SchemaTable {
private String schema;
private String tableName;
public SchemaTable(String schema, String tableName){
this.schema = schema;
this.tableName = tableName;
}
public String getSchema(){
return schema;
}
public String getTableName(){
return tableName;
}
}