package org.jboss.jsr299.tck.tests.jbt.validation.interceptors; import javax.inject.Named; import javax.interceptor.AroundInvoke; import javax.interceptor.Interceptor; import javax.interceptor.InvocationContext; @Interceptor @Named public class NamedInterceptorBroken { @AroundInvoke public Object alwaysReturnThis(InvocationContext ctx) throws Exception { return ctx.proceed(); } }