Package org.jboss.dna.graph.requests

Examples of org.jboss.dna.graph.requests.ReadAllChildrenRequest


     * @see org.jboss.dna.graph.requests.processor.RequestProcessor#process(org.jboss.dna.graph.requests.ReadAllChildrenRequest)
     */
    @Override
    public void process( ReadAllChildrenRequest request ) {
        Location locationInSource = projectIntoSource(request.of());
        ReadAllChildrenRequest projected = new ReadAllChildrenRequest(locationInSource);
        getConnection().execute(this.getExecutionContext(), projected);
        if (projected.hasError()) {
            return;
        }
        for (Location child : projected.getChildren()) {
            request.addChild(child);
        }
    }
View Full Code Here

TOP

Related Classes of org.jboss.dna.graph.requests.ReadAllChildrenRequest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.