}
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException {
if (request.getParameter(PARAM_BLOBKEY) != null) {
blobstoreService.serve(new BlobKey(request.getParameter(PARAM_BLOBKEY)), response);
} else if (request.getParameter(PARAM_REDIRECT) != null) {
perThreadRequest.set(request);
Map<String, String> stat = new HashMap<String, String>();
if (request.getParameter(PARAM_MESSAGE) != null) {
stat.put(TAG_MESSAGE, request.getParameter(PARAM_MESSAGE));