255256257258259260261
* @return A new directory resource. * @throws IOException */ public Resource createDirectoryResource(Directory handler, Request request, Response response) throws IOException { return new DirectoryResource(handler, request, response); }
248249250251252253254
315316317318319320321
} @Override public Resource createDirectoryResource(Directory directory, Request request, Response response) throws IOException { return new DirectoryResource(directory, request, response); }
316317318319320321322
257258259260261262263
* @throws IOException */ @Override public Resource createDirectoryResource(Directory handler, Request request, Response response) throws IOException { return new DirectoryResource(handler, request, response); }