Package com.noelios.restlet.local

Examples of com.noelios.restlet.local.DirectoryResource


     * @return A new directory resource.
     * @throws IOException
     */
    public Resource createDirectoryResource(Directory handler, Request request,
            Response response) throws IOException {
        return new DirectoryResource(handler, request, response);
    }
View Full Code Here


   * @return A new directory resource.
   * @throws IOException
   */
  public Resource createDirectoryResource(Directory handler, Request request,
      Response response) throws IOException {
    return new DirectoryResource(handler, request, response);
  }
View Full Code Here

    }

    @Override
    public Resource createDirectoryResource(Directory directory,
            Request request, Response response) throws IOException {
        return new DirectoryResource(directory, request, response);
    }
View Full Code Here

    }

    @Override
    public Resource createDirectoryResource(Directory directory,
            Request request, Response response) throws IOException {
        return new DirectoryResource(directory, request, response);
    }
View Full Code Here

   * @throws IOException
   */
  @Override
  public Resource createDirectoryResource(Directory handler, Request request,
      Response response) throws IOException {
    return new DirectoryResource(handler, request, response);
  }
View Full Code Here

TOP

Related Classes of com.noelios.restlet.local.DirectoryResource

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.