1 7 8 package com.sun.corba.se.impl.protocol; 9 10 import org.omg.CORBA.INTERNAL ; 11 import org.omg.CORBA.portable.ServantObject ; 12 13 import com.sun.corba.se.spi.protocol.LocalClientRequestDispatcher ; 14 15 18 19 public class NotLocalLocalCRDImpl implements LocalClientRequestDispatcher 20 { 21 public boolean useLocalInvocation(org.omg.CORBA.Object self) 22 { 23 return false; 24 } 25 26 public boolean is_local(org.omg.CORBA.Object self) 27 { 28 return false; 29 } 30 31 public ServantObject servant_preinvoke(org.omg.CORBA.Object self, 32 String operation, 33 Class expectedType) 34 { 35 return null; 39 } 41 42 public void servant_postinvoke(org.omg.CORBA.Object self, 43 ServantObject servant) 44 { 45 } 47 } 48 49 | Popular Tags |