automation.library.conversion2jmx.postman2jmx.parser.ParserFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of library-conversion2jmx Show documentation
Show all versions of library-conversion2jmx Show documentation
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.utils.CollectionVersion;
public class ParserFactory {
public static IParser getParser(CollectionVersion version) {
if(CollectionVersion.V2 == version) {
return new PostmanParserV2();
} else {
throw new UnsupportedOperationException();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy