On Wed, 03 Sep 2014 12:36:15 -0300, George Christman <gchrist...@cardaddy.com> wrote:

So would I just add that exact method to my AppModule along with my owe
annotation annotation instance?

You'll need to write your own worker and annotation, so you'll need to adapt the line you posted here.

If you add this to your AppModule

configuration.addInstance("ActivationRequestParameter", ActivationRequestParameterWorker.class);

you'll override the ActivationRequestParameterWorker from Tapestry instead of adding a new one. You'll need something like this:

configuration.addInstance("MyActivationRequestParameter", MyActivationRequestParameterWorker.class);

--
Thiago H. de Paula Figueiredo
Tapestry, Java and Hibernate consultant and developer
http://machina.com.br

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to