All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.v5analytics.webster.HandlerChain Maven / Gradle / Ivy

The newest version!
package com.v5analytics.webster;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class HandlerChain {
    private final RequestResponseHandler[] handlers;
    private int nextHandlerIndex = 0;

    public HandlerChain(RequestResponseHandler[] handlers) {
        this.handlers = handlers;
    }

    public void next(HttpServletRequest request, HttpServletResponse response) throws Exception {
        if (nextHandlerIndex < handlers.length) {
            RequestResponseHandler handler = handlers[nextHandlerIndex];
            nextHandlerIndex++;
            handler.handle(request, response, this);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy