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

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

package com.neotys.neoload.model.repository;

import org.immutables.value.Value;

import java.util.Optional;

/**
 * @deprecated As of v3, replaced by an associated class from v3 version.
 */
@Value.Immutable
@Deprecated
public interface Part {

    String getName();
    Optional getContentType();
    Optional getCharSet();
    Optional getTransferEncoding();

    Optional getValue();
    /**
     * File name sent to the server in the Part
     */
    Optional getFilename();

    /**
     * File used as Part content.
     */
    Optional getSourceFilename();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy