com.neotys.neoload.model.repository.Parameter Maven / Gradle / Ivy
package com.neotys.neoload.model.repository;
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 Parameter {
String getName();
// If value has empty optional, it means the parameter has no value ("parameterName"),
// If value is present with empty string, it means value is empty string ("parameterName=")
Optional getValue();
}