/** * CallInterceptionExample.java serves as an interface. This would be provided by the Application developer. * It is "near-pojo" programming. We still have to have an interface but our server side component can be pure * "Plain Old Java Object" programming. */ public interface CallInterceptionExample { /** * Says hello to Bill (Burke) ;-) */ void saySomething(); }