// license-header java merge-point // Generated by Interceptor.vsl in andromda-ejb3-cartridge on 09/18/2014 16:56:11. package org.andromda.test.howto13.a; import javax.interceptor.AroundInvoke; import javax.interceptor.InvocationContext; /** * Interceptor class AdminCheckerInterceptor */ public class AdminCheckerInterceptor { /** * Default interceptor execution method * * @param ctx the invocation context * @return */ @AroundInvoke public Object execute(InvocationContext ctx) throws Exception { // Add implementation try { return ctx.proceed(); } catch (Exception e) { throw e; } } }