149150151152153154155156157158159
return response.build(); } private Response doAnonymousRead() throws CloudException { FsFile found = null; FsBucket bucket; User user = null; // Check for a public file
207208209210211212213214215216217
response.header("Server", "JustInoughOpenStack"); return response.build(); } private FsFile findFile() throws CloudException { FsFile found; User user = null; FsBucket bucket;
250251252253254255256257
return found; } @HEAD public Response getFileHead() throws CloudException { FsFile found = findFile(); return buildReadResponse(httpRequest, fs, found); }
256257258259260261262263
return buildReadResponse(httpRequest, fs, found); } @GET public Response getFile() throws CloudException { FsFile found = findFile(); return buildReadResponse(httpRequest, fs, found); }