337338339340341342343
if (!contentFile.exists()) { return null; } return new Response(StatusLine.OK, context, new FileValue(contentFile)); }
111112113114115116117118119
@Override public Value get(Contact src, Key key) { String name = createFileName(key); File file = createStoreFile(name); if (file.exists()) { return new FileValue(file); } return null; }