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

org.apache.jmeter.protocol.http.sampler.HCAccessor Maven / Gradle / Ivy

There is a newer version: 0.12
Show newest version
package org.apache.jmeter.protocol.http.sampler;

import java.net.URL;

// due to JMeter's closed namespaces we have to have this class to access it
public class HCAccessor {
    public static HTTPAbstractImpl getInstance(HTTPSamplerBase sampler) {
        return new HTTPHC4Impl(sampler);
    }

    public static HTTPSampleResult sample(HTTPAbstractImpl impl, URL u, String method, boolean areFollowingRedirect, int depth) {
        return impl.sample(u, method, areFollowingRedirect, depth);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy