public SlingHttpResponse createNodeRecursive()

in src/main/java/org/apache/sling/testing/clients/SlingClient.java [142:149]


    public SlingHttpResponse createNodeRecursive(final String path, final String nodeType) throws ClientException {
        final String parentPath = getParentPath(path);
        if (!parentPath.isEmpty() && !exists(parentPath)) {
            createNodeRecursive(parentPath, nodeType);
        }

        return createNode(path, nodeType);
    }