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

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

There is a newer version: 3.3.3
Show newest version
package com.neotys.neoload.model.repository;
import java.util.Optional;

import org.immutables.value.Value;

import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.neotys.neoload.model.core.Element;

/**
 * @deprecated As of v3, replaced by an associated class from v3 version.
 */
@Value.Immutable
@JsonDeserialize(as = ImmutableAddCookie.class)
@Deprecated
public interface AddCookie extends Element {
	String getCookieName();
	String getCookieValue();
	Server getServer();
	Optional getExpires();
	Optional getPath();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy