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

com.ivanceras.db.api.SchemaTable Maven / Gradle / Ivy

There is a newer version: 0.1.2
Show newest version
/*******************************************************************************
 * 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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy