Package org.apache.sling.query.mock

Examples of org.apache.sling.query.mock.ResourceMock.addChild()


    ResourceMock resource = new ResourceMock(parent, name);
    for (Entry<String, String> entry : properties.entrySet()) {
      resource.setProperty(entry.getKey(), entry.getValue());
    }
    for (Entry<String, JsonObject> entry : children.entrySet()) {
      resource.addChild(parseResource(entry.getValue(), entry.getKey(), resource));
    }
    return resource;
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.