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

automation.library.conversion2jmx.postman2jmx.parser.PostmanParserV2 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.parser;

import automation.library.conversion2jmx.postman2jmx.model.postman.PostmanCollection;

import java.io.IOException;
import java.io.InputStream;

public class PostmanParserV2 extends AbstractParser {

    @Override
    public PostmanCollection parse(String postmanJsonFile) throws IOException {
        PostmanCollection postmanCollection = readValue(postmanJsonFile);
        return postmanCollection;
    }

    @Override
    public PostmanCollection parse(InputStream is) throws IOException {
        PostmanCollection postmanCollection = readValue(is);
        return postmanCollection;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy