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

automation.library.conversion2jmx.postman2jmx.utils.ResponseBodyMode Maven / Gradle / Ivy

Go to download

The 'conversion2jmx' library to helps creating JMeter JMX files from different sources

The newest version!
package automation.library.conversion2jmx.postman2jmx.utils;

public enum ResponseBodyMode {

    URL_ENCODED("urlencoded"),
    FILE("file"),
    RAW("raw"),
    FORM_DATA("formdata"),
    EMPTY("empty");

    private String mode;

     ResponseBodyMode(String mode) {
        this.mode = mode;
    }

    public String getMode(){
        return this.mode;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy