FileDocCategorySizeDatePackage
StatefulRemoveFactory.javaAPI DocJBoss 4.2.12353Fri Jul 13 20:53:50 BST 2007org.jboss.ejb3.stateful

StatefulRemoveFactory

public class StatefulRemoveFactory extends Object implements org.jboss.aop.advice.AspectFactory
comment
author
Bill Burke

Fields Summary
Constructors Summary
Methods Summary
public java.lang.ObjectcreatePerClass(org.jboss.aop.Advisor advisor)

      throw new IllegalStateException("PER_CLASS NOT APPLICABLE");
   
public java.lang.ObjectcreatePerInstance(org.jboss.aop.Advisor advisor, org.jboss.aop.InstanceAdvisor instanceAdvisor)

      throw new IllegalStateException("PER_INSTANCE NOT APPLICABLE");
   
public java.lang.ObjectcreatePerJoinpoint(org.jboss.aop.Advisor advisor, org.jboss.aop.joinpoint.Joinpoint jp)

      Remove rm = (Remove) advisor.resolveAnnotation(((MethodJoinpoint) jp).getMethod(), Remove.class);
      return new StatefulRemoveInterceptor(rm.retainIfException());
   
public java.lang.ObjectcreatePerJoinpoint(org.jboss.aop.Advisor advisor, org.jboss.aop.InstanceAdvisor instanceAdvisor, org.jboss.aop.joinpoint.Joinpoint jp)

      throw new IllegalStateException("PER_CLASS_JOINPOINT NOT APPLICABLE");
   
public java.lang.ObjectcreatePerVM()

      throw new IllegalStateException("PER_VM NOT APPLICABLE");
   
public java.lang.StringgetName()

      return "StatefulRemoveInterceptor";