Package org.apache.sling.query.mock

Examples of org.apache.sling.query.mock.ResourceMock


      } else if (value.isJsonObject()) {
        children.put(entry.getKey(), value.getAsJsonObject());
      }
    }

    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

Related Classes of org.apache.sling.query.mock.ResourceMock

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.