interceptorA.getAroundTimeout().add(new org.apache.openejb.jee.AroundTimeout(SimpleInterceptorA.class.getName(), "interceptorTimeoutAround"));
ejbJar.addInterceptor(interceptorA);
//Configure AroundTimeout by annotation
final Interceptor interceptorB = new Interceptor(SimpleInterceptorB.class);
ejbJar.addInterceptor(interceptorB);
//Override AroundTimeout annotation by deployment plan
final Interceptor interceptorC = new Interceptor(SimpleInterceptorC.class);
interceptorC.getAroundTimeout().add(new org.apache.openejb.jee.AroundTimeout(SimpleInterceptorC.class.getName(), "interceptorTimeoutAround"));
ejbJar.addInterceptor(interceptorC);