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

com.infusers.core.search.SpecificationConfigElement Maven / Gradle / Ivy

There is a newer version: 2024.12.0008
Show newest version
package com.infusers.core.search;

public class SpecificationConfigElement {
	private Class sourceDataType;
	private Class searchDataType;
	
	private String fieldName;
	
	public String getFieldName() {
		return fieldName;
	}

	public void setFieldName(String fieldName) {
		this.fieldName = fieldName;
	}

	public SpecificationConfigElement(Class sourceDataType, Class searchDataType, String fieldName) 
	{
		super();
		this.sourceDataType = sourceDataType;
		this.searchDataType = searchDataType;
		this.fieldName = fieldName;
	}
	
	public Class getSourceDataType() {
		return sourceDataType;
	}
	public void setSourceDataType(Class sourceDataType) {
		this.sourceDataType = sourceDataType;
	}
	public Class getSearchDataType() {
		return searchDataType;
	}
	public void setSearchDataType(Class searchDataType) {
		this.searchDataType = searchDataType;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy