01: package com.icesoft.faces.webapp.http.common.standard;
02:
03: import com.icesoft.faces.webapp.http.common.Response;
04: import com.icesoft.faces.webapp.http.common.ResponseHandler;
05:
06: public class NotFoundHandler implements ResponseHandler {
07: public static final NotFoundHandler HANDLER = new NotFoundHandler();
08:
09: public void respond(Response response) {
10: response.setStatus(404);
11: }
12: }
|