public ResourceResolverTestRequest()

in base/src/main/java/org/apache/sling/performance/ResourceResolverTestRequest.java [60:66]


    public ResourceResolverTestRequest(String scheme, String host, int port, String pathInfo, String httpMethod) {
        this.scheme = (scheme == null) ? "http" : scheme;
        this.host = (host == null) ? "localhost" : host;
        this.port = port;
        this.pathInfo = pathInfo;
        this.method = httpMethod;
    }