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

com.ivanceras.db.shared.ModelToTableCreator Maven / Gradle / Ivy

There is a newer version: 0.1.2
Show newest version
package com.ivanceras.db.shared;

import com.ivanceras.db.api.EntityManager;
import com.ivanceras.db.api.ModelDef;
import com.ivanceras.db.shared.exception.DatabaseException;

public class ModelToTableCreator {
	
	private EntityManager em;
	private ModelDef[] modelList;
	
	
	public ModelToTableCreator(EntityManager em, ModelDef[] modelList){
		this.em = em;
		this.modelList = modelList;
	}
	
	public void start() throws DatabaseException{
		for(ModelDef model : modelList){
			em.createModel(model);
		}
		setConstraints();
	}
	
	private void setConstraints() throws DatabaseException{
		for(ModelDef model : modelList){
			em.setForeignConstraint(model);
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy