Package org.linkedin.util.io.resource

Examples of org.linkedin.util.io.resource.RAMResource


   * @return the resource
   */
  @Override
  public InternalResource doBuildResource(String path)
  {
    return new RAMResource(this, getFullPath(path), path);
  }
View Full Code Here


    {
      RAMDirectory ramDirectory = (RAMDirectory) entry;
      for(RAMEntry ramEntry : ramDirectory.ls())
      {
        String resourcePath = PathUtils.addPaths(path, ramEntry.name());
        filter.accept(new RAMResource(this,
                                      getFullPath(resourcePath),
                                      resourcePath));
      }
      return true;
    }
View Full Code Here

TOP

Related Classes of org.linkedin.util.io.resource.RAMResource

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.