public FakeSlingHttpServletRequest()

in src/main/java/org/apache/sling/launchpad/testservices/exported/FakeSlingHttpServletRequest.java [74:80]


    public FakeSlingHttpServletRequest(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;
    }