Hello there. I'm wondering if this kind of situation is supposed to work (doesn't seem like it does):
@ApplicationScopedpublic class SecuredBean1
{
@CustomSecurityBinding
public void doSomething(@CurrentThing Thing thing,
@AnotherCurrentThing AnotherThing thing2)
{
thing.doSomething();
}
}
In other words, multiple parameter bindings. It doesn't seem to work.
Any ideas? Thanks!
--
Karl
