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

com.neotys.neoload.model.repository.FileVariable Maven / Gradle / Ivy

package com.neotys.neoload.model.repository;

import java.util.List;
import java.util.Optional;

import org.immutables.value.Value;

/**
 * @deprecated As of v3, replaced by an associated class from v3 version.
 */
@Value.Immutable
@Deprecated
public interface FileVariable extends Variable {
	
	String getColumnsDelimiter();
	
	List getColumnsNames();

	//Either data or filename needs to be filled but not both
	Optional getData();
	Optional getFileName();
	
	boolean getFirstLineIsColumnName();
	
	int getNumOfFirstRowData();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy