UrlBinding : the parameter name $event is useless
-------------------------------------------------

                 Key: STS-645
                 URL: http://www.stripesframework.org/jira/browse/STS-645
             Project: Stripes
          Issue Type: Bug
          Components: ActionBean Dispatching
    Affects Versions: Release 1.5
            Reporter: Amaury Mylonas
            Priority: Minor


An event can be invoked without using the "$event" special parameter. If 
another parameter value matches an event's name this one is fired.

@UrlBinding("/test/{action}")
public class TestActionBean {
        
        private String action;
        
        @DefaultHandler
        public Resolution defaultHandler() {
                System.out.println("default handler");
                return null;
        }

        @HandlesEvent("fire")
        public Resolution fireEventHandler() {
                System.out.println("'fire' event handler");
                return null;
        }

        public void setAction(String action) {
                this.action = action;
        }
}


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://www.stripesframework.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

------------------------------------------------------------------------------
Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM)
software. With Adobe AIR, Ajax developers can use existing skills and code to
build responsive, highly engaging applications that combine the power of local
resources and data with the reach of the web. Download the Adobe AIR SDK and
Ajax docs to start building applications today-http://p.sf.net/sfu/adobe-com
_______________________________________________
Stripes-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-development

Reply via email to