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

prerna.query.querystruct.TemporalEngineHardQueryStruct Maven / Gradle / Ivy

The newest version!
package prerna.query.querystruct;

import java.util.Map;

public class TemporalEngineHardQueryStruct extends HardSelectQueryStruct {

	private Map config = null;
	
	public TemporalEngineHardQueryStruct() {
		
	}
	
	public void setConfig(Map config) {
		this.config = config;
	}
	
	public Map getConfig() {
		return this.config;
	}
	
	@Override
	public SelectQueryStruct getNewBaseQueryStruct() {
		TemporalEngineHardQueryStruct newQs = new TemporalEngineHardQueryStruct();
		newQs.setQsType(getQsType());
		newQs.setEngineId(getEngineId());
		// set the physical engine object if appropriate
		newQs.setEngine(getEngine());
		newQs.setConfig(this.config);
		return newQs;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy