Migration Issue: This migration issue is related to the
inheritance of client view in a session bean. Consider the
following code fragment where session beans A and B exposes
local business interface ( or client views using EJB 3.X
specification terminology).
// Assume Foo is a local business interface
@Stateless
public class A implements Foo { ... }
//...