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

com.droidlogix.dbflare.a2e.MappingValue Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
package com.droidlogix.dbflare.a2e;

/**
 * @author John Pili
 * @since 2016-11-19
 */
public class MappingValue
{
	private String keyVectorType;
	private String keyVector;
	private String jsonOutputName;

	public String getKeyVectorType()
	{
		return keyVectorType;
	}

	public void setKeyVectorType(String keyVectorType)
	{
		this.keyVectorType = keyVectorType;
	}

	public String getKeyVector()
	{
		return keyVector;
	}

	public void setKeyVector(String keyVector)
	{
		this.keyVector = keyVector;
	}

	public String getJsonOutputName()
	{
		return jsonOutputName;
	}

	public void setJsonOutputName(String jsonOutputName)
	{
		this.jsonOutputName = jsonOutputName;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy