_filtersPerUrl = filtersPerUrl;
}
public Servlet getServlet() throws ServletException {
if (getConfiguration() == null) throw new HttpNotFoundException( "No servlet mapping defined", _url );
try {
return getConfiguration().getServlet();
} catch (ClassNotFoundException e) {
throw new HttpNotFoundException( _url, e );
} catch (IllegalAccessException e) {
throw new HttpInternalErrorException( _url, e );
} catch (InstantiationException e) {
throw new HttpInternalErrorException( _url, e );
} catch (ClassCastException e) {