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

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

package com.neotys.neoload.model.repository;

import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.neotys.neoload.model.core.Element;
import org.immutables.value.Value;

import java.util.stream.Stream;

/**
 * @deprecated As of v3, replaced by an associated class from v3 version.
 */
@Value.Immutable
@JsonDeserialize(as = ImmutableUserPath.class)
@Deprecated
public interface UserPath extends Element {
	ContainerForMulti getInitContainer();
	ContainerForMulti getActionsContainer();
	ContainerForMulti getEndContainer();

	@Override
	default Stream flattened() {
		return Stream.of(getInitContainer(), getActionsContainer(), getEndContainer()).flatMap(ContainerForMulti::flattened);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy