package cz.softeu.test; @Name (“helloAction”) public class HelloAction { // lepší je použití getter/setter public HelloBean instance = new HelloBean(); /** * Action method */ public String send(){ //do something real return (“success”); } }