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

com.fastchar.out.FastOutJsp Maven / Gradle / Ivy

package com.fastchar.out;

import com.fastchar.core.FastAction;
import com.fastchar.core.FastChar;

public class FastOutJsp extends FastOut {

    @Override
    public void response(FastAction action) throws Exception {
        setDescription("forward to jsp '" + data + "' ");
        action.getRequest().getRequestDispatcher(String.valueOf(data))
                .forward(action.getRequest(), action.getResponse());

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy