<br><div class="gmail_quote">On Wed, Sep 29, 2010 at 4:06 PM, Manik Surtani <span dir="ltr">&lt;<a href="mailto:manik@jboss.org" target="_blank">manik@jboss.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">




So this is an extension to the discussion around a GenericCommand that has been going around.  IMO a GenericCommand is a big -1 from me for various reasons - the whole purpose of the command pattern is so we have strongly typed and unit testable commands.  This will help the ongoing work by Mircea, Sanne and Israel on various modules that need to define custom commands.<br>





<br>
I proposed the following solution to Mircea earlier today, I&#39;ll repeat here for you guys to discuss.  Note that this is a *half baked* solution and needs more thought!  :-)<br>
<br>
* If a module needs to define custom commands, it should define its own ReplicableCommand implementations in its&#39; own module.<br>
* It should define a sub-interface to Visitor (MyModuleVisitor) with additional methods to handle the new commands<br>
* Interceptors defined in this module should extend CommandInterceptor AND implement MyModuleVisitor<br>
* These new commands can be created directly, or via a new CommandFactory specially for these commands.<br>
<br></blockquote><div>Just to make clear what is my problem... The ReplicableCommand does not need to be necessarily a VisitableCommand, right? In my case it&#39;s a CacheRpcCommand and I have to initialize this on CommandsFactoryImpl.initializeReplicableCommand(ReplicableCommand, boolean):<br>

<br>case ClusteredQueryFacade.COMMAND_ID:<br>             ClusteredQueryFacade csc = (ClusteredQueryFacade) c;<br>             csc.initialize(cache);<br>             break;<br><br>The problem is each ReplicableCommand may have a different way to initialize. Maybe we can create a big initialize method, that receives a lot of arguments, and the command uses just some of them. Or this problem will de solved with the solution that you proposed?<br>

<br>Or maybe there is a better way to initialize the CacheRpcCommand... and I choose the wrong way.<br><br><br>cheers<br>Israel <br>
</div></div><br>