On 10/31/07, Emmanuel Lecharny <[EMAIL PROTECTED]> wrote:
> ...
> I'm looking again in the AuthenticationServiceChain (which has been
> removed in bigbang branch), and I see this code :
> ...
> As one can see, the next.execute() method is called twice if the
> authContext.getClientKey() is not null.
>
> Should I presume that the method should return immediatly in tis case
> instead of going through all the following code ? Something like :
> ...
> if ( authContext.getClientKey() != null )
> {
> next.execute( session, message );
> return;
> }
> ...
Yes, definitely.
Enrique