1 22 package org.jboss.invocation; 23 24 30 public class MarshallingInvokerInterceptor 31 extends InvokerInterceptor 32 { 33 34 private static final long serialVersionUID = -6473336704093435358L; 35 36 public MarshallingInvokerInterceptor() 37 { 38 } 40 41 43 46 public Object invoke(Invocation invocation) 47 throws Exception  48 { 49 if(isLocal(invocation)) 50 return invokeMarshalled(invocation); 51 else 52 return invokeInvoker(invocation); 53 } 54 } 55 | Popular Tags |