1 23 package com.sun.enterprise; 24 25 31 public interface InvocationManager { 32 33 40 public void preInvoke(ComponentInvocation inv) throws InvocationException; 41 42 49 public void postInvoke(ComponentInvocation inv) throws InvocationException; 50 51 55 public ComponentInvocation getCurrentInvocation(); 56 58 66 public ComponentInvocation getPreviousInvocation() 67 throws InvocationException; 68 69 72 public boolean isInvocationStackEmpty(); 73 74 public java.util.List getAllInvocations(); 75 } 76 | Popular Tags |