Tabnine Logo
Interceptor.profile
Code IndexAdd Tabnine to your IDE (free)

How to use
profile
method
in
org.apache.openejb.test.interceptor.Interceptor

Best Java code snippets using org.apache.openejb.test.interceptor.Interceptor.profile (Showing top 20 results out of 315)

origin: org.apache.openejb/openejb-itests-beans

/**
 * The interceptor method.
 * This should intercept postConstruct of the bean
 *
 * @throws runtime exceptions.
 */
@PostConstruct
public void superBeanInterceptorPostConstruct() throws Exception {
  Interceptor.profile(this, "superBeanInterceptorPostConstruct");
  return;
}
origin: org.apache.geronimo.ext.openejb/openejb-itests-beans

/**
 * The interceptor method. 
 * This should intercept postConstruct of the bean
 * 
 * @throws runtime exceptions.
 */    
@PostConstruct
public void superBeanInterceptorPostConstruct() throws Exception {
  Interceptor.profile(this, "superBeanInterceptorPostConstruct");
  return;
}

origin: org.apache.geronimo.ext.openejb/openejb-itests-beans

/**
 * The interceptor method. 
 * This should intercept preDestroy of the bean.
 * 
 * @throws runtime exceptions.
 */    
@PreDestroy
public void superBeanInterceptorPreDestroy() throws Exception {
  Interceptor.profile(this, "superBeanInterceptorPreDestroy");
  return;
}
origin: org.apache.openejb/openejb-itests-beans

/**
 * The interceptor method.
 * This should intercept postActivate of the bean
 *
 * @param ctx - InvocationContext
 * @throws runtime exceptions.
 */
public void ddInterceptorPostActivate(final InvocationContext ctx) throws Exception {
  Interceptor.profile(ctx, "ddInterceptorPostActivate");
  ctx.proceed();
  return;
}
origin: org.apache.openejb/openejb-itests-beans

/**
 * The interceptor method.
 * This should intercept preDestroy of the bean.
 *
 * @param ctx - InvocationContext
 * @throws runtime exceptions.
 */
public void ddInterceptorPreDestroy(final InvocationContext ctx) throws Exception {
  Interceptor.profile(ctx, "ddInterceptorPreDestroy");
  ctx.proceed();
  return;
}
origin: org.apache.openejb/openejb-itests-beans

/**
 * The interceptor method.
 * This should intercept postConstruct of the bean
 *
 * @param ctx - InvocationContext
 * @throws Exception runtime exceptions.
 */
@PostConstruct
public void defaultInterceptorPostConstruct(final InvocationContext ctx) throws Exception {
  Interceptor.profile(ctx, "defaultInterceptorPostConstruct");
  ctx.proceed();
}
origin: org.apache.openejb/openejb-itests-beans

/**
 * The interceptor method.
 * This should intercept prePassivate of the bean.
 *
 * @param ctx - InvocationContext
 * @throws Exception runtime exceptions.
 */
@PrePassivate
public void defaultInterceptorPrePassivate(final InvocationContext ctx) throws Exception {
  Interceptor.profile(ctx, "defaultInterceptorPrePassivate");
  ctx.proceed();
}
origin: org.apache.openejb/openejb-itests-beans

/**
 * The interceptor method.
 * This should intercept preDestroy of the bean.
 *
 * @throws Exception runtime exceptions.
 */
@PreDestroy
public void inBeanInterceptorPreDestroy() throws Exception {
  final Map<String, Object> ctxData = Interceptor.profile(this, "inBeanInterceptorPreDestroy");
  setContextData(ctxData);
}
origin: org.apache.geronimo.ext.openejb/openejb-itests-beans

/**
 * The interceptor method. 
 * This should intercept postConstruct of the bean
 * 
 * @throws Exception runtime exceptions.
 */    
@PostConstruct
public void inBeanInterceptorPostConstruct() throws Exception {
  Map<String, Object> ctxData = Interceptor.profile(this, "inBeanInterceptorPostConstruct");
  setContextData(ctxData);
}

origin: org.apache.tomee/openejb-itests-interceptor-beans

/**
 * The interceptor method.
 * This should intercept postConstruct of the bean
 *
 * @throws Exception runtime exceptions.
 */
@PostConstruct
public void inBeanInterceptorPostConstruct() throws Exception {
  final Map<String, Object> ctxData = Interceptor.profile(this, "inBeanInterceptorPostConstruct");
  setContextData(ctxData);
}
origin: org.apache.geronimo.ext.openejb/openejb-itests-interceptor-beans

/**
 * The interceptor method. 
 * This should intercept postConstruct of the bean
 * 
 * @throws Exception runtime exceptions.
 */    
@PostConstruct
public void inBeanInterceptorPostConstruct() throws Exception {
  Map<String, Object> ctxData = Interceptor.profile(this, "inBeanInterceptorPostConstruct");
  setContextData(ctxData);
}

origin: org.apache.tomee/openejb-itests-interceptor-beans

/**
 * The interceptor method.
 * This should intercept preDestroy of the bean.
 *
 * @throws Exception runtime exceptions.
 */
@PreDestroy
public void inBeanInterceptorPreDestroy() throws Exception {
  final Map<String, Object> ctxData = Interceptor.profile(this, Thread.currentThread().getStackTrace()[4].getMethodName());
  setContextData(ctxData);
}
origin: org.apache.tomee/openejb-itests-interceptor-beans

/**
 * The interceptor method.
 * This should intercept preDestroy of the bean.
 *
 * @throws Exception runtime exceptions.
 */
@PreDestroy
public void inBeanInterceptorPreDestroy() throws Exception {
  final Map<String, Object> ctxData = Interceptor.profile(this, "inBeanInterceptorPreDestroy");
  setContextData(ctxData);
}
origin: org.apache.openejb/openejb-itests-beans

/**
 * The interceptor method.
 * This should intercept postActivate of the bean
 *
 * @throws Exception runtime exceptions.
 */
@PostActivate
public void inBeanInterceptorPostActivate() throws Exception {
  final Map<String, Object> ctxData = Interceptor.profile(this, "inBeanInterceptorPostActivate");
  setContextData(ctxData);
}
origin: org.apache.geronimo.ext.openejb/openejb-itests-beans

/**
 * The interceptor method. 
 * This should intercept prePassivate of the bean.
 * 
 * @throws Exception runtime exceptions.
 */    
@PrePassivate
public void inBeanInterceptorPrePassivate() throws Exception {
  Map<String, Object> ctxData = Interceptor.profile(this, "inBeanInterceptorPrePassivate");
  setContextData(ctxData);
}

origin: org.apache.geronimo.ext.openejb/openejb-itests-interceptor-beans

/**
 * The interceptor method. 
 * This should intercept postActivate of the bean
 * 
 * @throws Exception runtime exceptions.
 */    
@PostActivate
public void inBeanInterceptorPostActivate() throws Exception {
  Map<String, Object> ctxData = Interceptor.profile(this, "inBeanInterceptorPostActivate");
  setContextData(ctxData);
}

origin: org.apache.tomee/openejb-itests-interceptor-beans

/**
 * The interceptor method.
 * This should intercept postActivate of the bean
 *
 * @throws Exception runtime exceptions.
 */
@PostActivate
public void inBeanInterceptorPostActivate() throws Exception {
  final Map<String, Object> ctxData = Interceptor.profile(this, "inBeanInterceptorPostActivate");
  setContextData(ctxData);
}
origin: org.apache.openejb/openejb-itests-interceptor-beans

/**
 * The interceptor method. 
 * This should intercept postActivate of the bean
 * 
 * @throws Exception runtime exceptions.
 */    
@PostActivate
public void inBeanInterceptorPostActivate() throws Exception {
  final Map<String, Object> ctxData = Interceptor.profile(this, "inBeanInterceptorPostActivate");
  setContextData(ctxData);
}

origin: org.apache.openejb/openejb-itests-interceptor-beans

/**
 * The interceptor method. 
 * This should intercept postActivate of the bean
 * 
 * @throws Exception runtime exceptions.
 */    
@PostActivate
public void inBeanInterceptorPostActivate() throws Exception {
  final Map<String, Object> ctxData = Interceptor.profile(this, "inBeanInterceptorPostActivate");
  setContextData(ctxData);
}

origin: org.apache.openejb/openejb-itests-interceptor-beans

/**
 * The interceptor method. 
 * This should intercept postActivate of the bean
 * 
 * @throws Exception runtime exceptions.
 */    
@PostActivate
public void inBeanInterceptorPostActivate() throws Exception {
  final Map<String, Object> ctxData = Interceptor.profile(this, "inBeanInterceptorPostActivate");
  setContextData(ctxData);
}

org.apache.openejb.test.interceptorInterceptorprofile

Javadoc

This is invoked by the lifecycle interceptor callback methods that are defined inside a bean.

Popular methods of Interceptor

  • updateInterceptorsList

Popular in Java

  • Start an intent from android
  • getResourceAsStream (ClassLoader)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getApplicationContext (Context)
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • JTextField (javax.swing)
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now