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

org.sagacity.quickvo.model.ConfigModel Maven / Gradle / Ivy

The newest version!
/**
 * 
 */
package org.sagacity.quickvo.model;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;

/**
 * @project sagacity-quickvo
 * @description 任务配置数据模型
 * @author zhongxuchen
 * @version v1.0,Date:2010-7-21
 */
@SuppressWarnings("rawtypes")
public class ConfigModel implements Serializable {
	/**
	 * 
	 */
	private static final long serialVersionUID = -1745793126948000038L;

	/**
	 * 输出路径
	 */
	private String targetDir;

	/**
	 * 抽象vo的路径
	 */
	private String abstractPath = "base";

	/**
	 * 编码格式
	 */
	private String encoding = "UTF-8";

	/**
	 * 类型匹配
	 */
	private List typeMapping;

	/**
	 * 任务信息
	 */
	private List tasks;

	/**
	 * 包含的表
	 */
	private String[] tableIncludes;

	/**
	 * 排除的表
	 */
	private String[] tableExcludes;
	
	
	private String[] docApiImports;
	
	private String docApiFieldTemplate;

	private String docApiClassTemplate;
	
	/**
	 * 级联设置
	 */
	// private HashMap> cascadeConfig = new
	// HashMap>();
	private List cascadeConfig = new ArrayList();

	/**
	 * 主键生成策略
	 */
	private List pkGeneratorStrategyList = new ArrayList();

	/**
	 * 业务主键id策略配置
	 */
	private HashMap buisnessIdsMap = new HashMap();

	/**
	 * @return the targetDir
	 */
	public String getTargetDir() {
		return targetDir;
	}

	/**
	 * @param targetDir the targetDir to set
	 */
	public void setTargetDir(String targetDir) {
		this.targetDir = targetDir;
	}

	/**
	 * @return the encoding
	 */
	public String getEncoding() {
		return encoding;
	}

	/**
	 * @param encoding the encoding to set
	 */
	public void setEncoding(String encoding) {
		this.encoding = encoding;
	}

	/**
	 * @return the typeMapping
	 */
	public List getTypeMapping() {
		return typeMapping;
	}

	/**
	 * @param typeMapping the typeMapping to set
	 */
	public void setTypeMapping(List typeMapping) {
		this.typeMapping = typeMapping;
	}

	/**
	 * @return the tasks
	 */
	public List getTasks() {
		return tasks;
	}

	/**
	 * @param tasks the tasks to set
	 */
	public void setTasks(List tasks) {
		this.tasks = tasks;
	}

	/**
	 * @return the tableIncludes
	 */
	public String[] getTableIncludes() {
		return tableIncludes;
	}

	/**
	 * @param tableIncludes the tableIncludes to set
	 */
	public void setTableIncludes(String[] tableIncludes) {
		this.tableIncludes = tableIncludes;
	}

	/**
	 * @return the tableExcludes
	 */
	public String[] getTableExcludes() {
		return tableExcludes;
	}

	/**
	 * @param tableExcludes the tableExcludes to set
	 */
	public void setTableExcludes(String[] tableExcludes) {
		this.tableExcludes = tableExcludes;
	}

	/**
	 * @return the abstractPath
	 */
	public String getAbstractPath() {
		return abstractPath;
	}

	/**
	 * @param abstractPath the abstractPath to set
	 */
	public void setAbstractPath(String abstractPath) {
		this.abstractPath = abstractPath;
	}

	/**
	 * @return the pkGeneratorStrategyMap
	 */
	public List getPkGeneratorStrategy() {
		return pkGeneratorStrategyList;
	}

	/**
	 * @param pkGeneratorStrategyMap the pkGeneratorStrategyMap to set
	 */
	public void addPkGeneratorStrategy(PrimaryKeyStrategy primaryKeyStrategy) {
		this.pkGeneratorStrategyList.add(primaryKeyStrategy);
	}

	/**
	 * @return the cascadeConfig
	 */
	public List getCascadeConfig() {
		return cascadeConfig;
	}

	public void addCascadeConfig(List cascadeModels) {
		this.cascadeConfig.addAll(cascadeModels);
	}

	public void addBusinessId(BusinessIdConfig businessIdConfig) {
		this.buisnessIdsMap.put(businessIdConfig.getTableName().toLowerCase(), businessIdConfig);
	}

	public BusinessIdConfig getBusinessId(String tableName) {
		return this.buisnessIdsMap.get(tableName.toLowerCase());
	}

	public String[] getDocApiImports() {
		return docApiImports;
	}

	public void setDocApiImports(String[] docApiImports) {
		this.docApiImports = docApiImports;
	}

	public String getDocApiFieldTemplate() {
		return docApiFieldTemplate;
	}

	public void setDocApiFieldTemplate(String docApiFieldTemplate) {
		this.docApiFieldTemplate = docApiFieldTemplate;
	}

	public String getDocApiClassTemplate() {
		return docApiClassTemplate;
	}

	public void setDocApiClassTemplate(String docApiClassTemplate) {
		this.docApiClassTemplate = docApiClassTemplate;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy