public Resource getChild()

in src/main/java/org/apache/sling/cassandra/resource/provider/CassandraResource.java [157:167]


    public Resource getChild(String s) {
       return resourceProvider.getResource(resourceResolver,new StringBuilder(resourcePath.endsWith("/") ? resourcePath.substring(0, resourcePath.length() - 1)
                        : resourcePath)
                        .append("/").append(s).toString());
//        return new CassandraResource(
//                this.resourceProvider,
//                this.resourceResolver,
//                new StringBuilder(resourcePath.endsWith("/") ? resourcePath.substring(0, resourcePath.length() - 1)
//                        : resourcePath)
//                        .append("/").append(s).toString(),valueMap);
    }