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

org.kuali.common.impex.ColumnContext Maven / Gradle / Ivy

package org.kuali.common.impex;

public class ColumnContext {

	String name;
	Integer sqlType;
	Integer size;
	Integer decimalDigits;
	Integer nullType;
	String defValue;

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public Integer getSqlType() {
		return sqlType;
	}

	public void setSqlType(Integer sqlType) {
		this.sqlType = sqlType;
	}

	public Integer getSize() {
		return size;
	}

	public void setSize(Integer size) {
		this.size = size;
	}

	public Integer getDecimalDigits() {
		return decimalDigits;
	}

	public void setDecimalDigits(Integer decimalDigits) {
		this.decimalDigits = decimalDigits;
	}

	public Integer getNullType() {
		return nullType;
	}

	public void setNullType(Integer nullType) {
		this.nullType = nullType;
	}

	public String getDefValue() {
		return defValue;
	}

	public void setDefValue(String defValue) {
		this.defValue = defValue;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy