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

com.neotys.neoload.model.repository.Conditions 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 Conditions {
	MatchType getMatchType();
	List getConditions();
	Optional getDescription();
	
	enum MatchType{ALL, ANY}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy