Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
3.1.2
-
None
-
None
-
WinXP / Java 5
Description
Hi Everyone,
My Stateless EJB registers a simple logging interceptor.
@Stateless
public class MyCommandImpl implements MyCommandLocal {
@Interceptors(CompensationRegistry.class)
public String execute()
}
Now, if the implemented interface does not inherit from another interface, everything is fine:
@Local
public interface MyCommandLocal {
public String execute();
}
But if it inherits from another interface, the interceptor does not get called:
@Local
public interface MyCommandLocal extends ICommand {
public String execute();
}
Is this a bug or am I wrong?
Best regards!
Alexander