* an ACCES FORBIDDEN Reply.
* @param request The request that is about to be processsed.
*/
public ReplyInterface ingoingFilter(RequestInterface req) {
ReplyInterface rep = super.ingoingFilter(req);
if (rep != null)
return rep;
Request request = (Request) req;
if(request.getMethod().equals("PUT")) {