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

net.anotheria.anosite.action.generic.TestAction Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package net.anotheria.anosite.action.generic;

import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;

import net.anotheria.anosite.action.Action;
import net.anotheria.anosite.action.ActionCommand;
import net.anotheria.anosite.action.ActionMapping;

public class TestAction implements Action{

	public ActionCommand execute(HttpServletRequest req,
			HttpServletResponse responce, ActionMapping mapping)
			throws Exception {

		System.out.println("Called that action! "+this.getClass().getName()+", mapping: "+mapping);
		
		return mapping.getPredefinedCommand();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy