package dataProfileWebSite;

import java.sql.Timestamp;

public class DatabaseElement 
{
	private String databaseName;
	private String schemaName;
	private int databaseLinkId;
	private int tableCount;
	private Timestamp latestProfile;


	public DatabaseElement()
	{
		;
	}
	
	public DatabaseElement
	(
		String databaseName,
		String schemaName,
		int databaseLinkId,
		int tableCount,
		Timestamp latestProfile
	)
	{
		this.databaseName = databaseName;
		this.schemaName = schemaName;
		this.databaseLinkId = databaseLinkId; 
		this.tableCount = tableCount; 
		this.latestProfile = latestProfile; 
	}

	public String getDatabaseName() 
	{
		return databaseName;
	}

	public void setDatabaseName(String databaseName) 
	{
		this.databaseName = databaseName;
	}

	public String getSchemaName()
	{
		return schemaName;
	}

	public void setSchemaName(String schemaName)
	{
		this.schemaName = schemaName;
	}

	public int getDatabaseLinkId() 
	{
		return databaseLinkId;
	}

	public void setDatabaseLinkId(int databaseLinkId) 
	{
		this.databaseLinkId = databaseLinkId;
	}

	public int getTableCount() 
	{
		return tableCount;
	}

	public void setTableCount(int tableCount) 
	{
		this.tableCount = tableCount;
	}

	public Timestamp getLatestProfile() 
	{
		return latestProfile;
	}

	public void setLatestProfile(Timestamp latestProfile) 
	{
		this.latestProfile = latestProfile;
	}
}
