1 7 8 package com.sun.corba.se.impl.interceptors; 9 10 import java.io.IOException ; 11 12 import org.omg.CORBA.Any ; 13 import org.omg.CORBA.NVList ; 14 15 import org.omg.IOP.CodecFactory ; 16 17 import org.omg.CORBA.portable.RemarshalException ; 18 19 import org.omg.PortableInterceptor.ObjectReferenceTemplate ; 20 import org.omg.PortableInterceptor.ForwardRequest ; 21 import org.omg.PortableInterceptor.Interceptor ; 22 import org.omg.PortableInterceptor.PolicyFactory ; 23 import org.omg.PortableInterceptor.Current ; 24 25 import org.omg.PortableInterceptor.ORBInitInfoPackage.DuplicateName ; 26 27 import com.sun.corba.se.pept.encoding.OutputObject; 28 29 import com.sun.corba.se.spi.ior.ObjectKeyTemplate; 30 31 import com.sun.corba.se.spi.oa.ObjectAdapter; 32 33 import com.sun.corba.se.spi.orb.ORB; 34 35 import com.sun.corba.se.spi.protocol.PIHandler; 36 import com.sun.corba.se.spi.protocol.ForwardException; 37 import com.sun.corba.se.spi.protocol.CorbaMessageMediator; 38 39 import com.sun.corba.se.impl.corba.RequestImpl; 40 41 import com.sun.corba.se.impl.protocol.giopmsgheaders.ReplyMessage; 42 43 49 public class PINoOpHandlerImpl implements PIHandler 50 { 51 public PINoOpHandlerImpl( ) { 52 } 53 54 public void initialize() { 55 } 56 57 public void destroyInterceptors() { 58 } 59 60 public void objectAdapterCreated( ObjectAdapter oa ) 61 { 62 } 63 64 public void adapterManagerStateChanged( int managerId, 65 short newState ) 66 { 67 } 68 69 public void adapterStateChanged( ObjectReferenceTemplate [] 70 templates, short newState ) 71 { 72 } 73 74 75 public void disableInterceptorsThisThread() { 76 } 77 78 public void enableInterceptorsThisThread() { 79 } 80 81 public void invokeClientPIStartingPoint() 82 throws RemarshalException 83 { 84 } 85 86 public Exception invokeClientPIEndingPoint( 87 int replyStatus, Exception exception ) 88 { 89 return null; 90 } 91 92 public void initiateClientPIRequest( boolean diiRequest ) { 93 } 94 95 public void cleanupClientPIRequest() { 96 } 97 98 public void setClientPIInfo(CorbaMessageMediator messageMediator) 99 { 100 } 101 102 public void setClientPIInfo( RequestImpl requestImpl ) 103 { 104 } 105 106 final public void sendCancelRequestIfFinalFragmentNotSent() 107 { 108 } 109 110 111 public void invokeServerPIStartingPoint() 112 { 113 } 114 115 public void invokeServerPIIntermediatePoint() 116 { 117 } 118 119 public void invokeServerPIEndingPoint( ReplyMessage replyMessage ) 120 { 121 } 122 123 public void setServerPIInfo( Exception exception ) { 124 } 125 126 public void setServerPIInfo( NVList arguments ) 127 { 128 } 129 130 public void setServerPIExceptionInfo( Any exception ) 131 { 132 } 133 134 public void setServerPIInfo( Any result ) 135 { 136 } 137 138 public void initializeServerPIInfo( CorbaMessageMediator request, 139 ObjectAdapter oa, byte[] objectId, ObjectKeyTemplate oktemp ) 140 { 141 } 142 143 public void setServerPIInfo( java.lang.Object servant, 144 String targetMostDerivedInterface ) 145 { 146 } 147 148 public void cleanupServerPIRequest() { 149 } 150 151 public void register_interceptor( Interceptor interceptor, int type ) 152 throws DuplicateName 153 { 154 } 155 156 public Current getPICurrent( ) { 157 return null; 158 } 159 160 public org.omg.CORBA.Policy create_policy(int type, org.omg.CORBA.Any val) 161 throws org.omg.CORBA.PolicyError 162 { 163 return null; 164 } 165 166 public void registerPolicyFactory( int type, PolicyFactory factory ) { 167 } 168 169 public int allocateServerRequestId () 170 { 171 return 0; 172 } 173 } 174 | Popular Tags |