()
| 324 | } |
| 325 | |
| 326 | public void handle() throws IOException, ServletException { |
| 327 | if (m_index < m_handlers.size()) { |
| 328 | Handler handler = m_handlers.get(m_index++); |
| 329 | |
| 330 | handler.handle(this); |
| 331 | } else { |
| 332 | m_chain.doFilter(m_request, m_response); |
| 333 | } |
| 334 | } |
| 335 | |
| 336 | public boolean isTop() { |
| 337 | return m_top; |