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

com.neotys.neoload.model.v3.project.userpath.Part Maven / Gradle / Ivy

package com.neotys.neoload.model.v3.project.userpath;

import com.neotys.neoload.model.v3.project.Element;
import org.immutables.value.Value;

import java.util.Optional;


@Value.Immutable
public interface Part extends Element {

    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();

    class Builder extends ImmutablePart.Builder {}
    static Builder builder() {
        return new Builder();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy