01: /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
02: duplicate and use this code are hereby granted provided that this
03: copyright notice is included.
04: *****/package org.omg.PortableServer;
05:
06: public interface ServantLocatorOperations extends
07: org.omg.PortableServer.ServantManagerOperations {
08:
09: public org.omg.PortableServer.Servant preinvoke(
10: byte[] oid,
11: org.omg.PortableServer.POA adapter,
12: java.lang.String operation,
13: org.omg.PortableServer.ServantLocatorPackage.CookieHolder the_cookie)
14: throws org.omg.PortableServer.ForwardRequest;
15:
16: public void postinvoke(byte[] oid,
17: org.omg.PortableServer.POA adapter,
18: java.lang.String operation, java.lang.Object the_cookie,
19: org.omg.PortableServer.Servant the_servant)
20: throws org.omg.PortableServer.ForwardRequest;
21: }
|