/** * CallInterceptionExampleBean - This is the only other file besides the interface that is provided by the * server-side application developer. * We'll add functionality to it later, but for now it just says "Hello, " and the sentence will be finished * by the infrastructure of our appserver. Consider what we might have done with XDoclet and a smarter * interceptor? We might have maybe said: * * @cie.target name="Bill!" */ public class CallInterceptionExampleBean { public void saySomething() { System.out.print("Hello, "); } }