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

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

package com.neotys.neoload.model.repository;

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

/**
 * @deprecated As of v3, replaced by an associated class from v3 version.
 */
@Deprecated
public interface Request extends PageElement {

    enum HttpMethod {
        GET,
        POST,
        HEAD,
        PUT,
        DELETE,
        OPTIONS,
        TRACE,
        CUSTOM
    }

    /**
     * The request full path containing the URL parameters.
     * @return
     */
    Optional getPath();
    Optional getServer();
    HttpMethod getHttpMethod();
    List getParameters();
    List getExtractors();
    List getValidators();
    List
getHeaders(); Optional getContentType(); Optional getRecordedFiles(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy