01: package org.omg.PortableServer;
02:
03: /** stream-based skeleton class */
04:
05: public abstract class ServantLocatorPOA extends
06: org.omg.PortableServer.Servant implements
07: org.omg.CORBA.portable.InvokeHandler,
08: org.omg.PortableServer.ServantLocatorOperations {
09: public ServantLocator _this () {
10: return ServantLocatorHelper.narrow(_this _object());
11: }
12:
13: public ServantLocator _this (org.omg.CORBA.ORB orb) {
14: return ServantLocatorHelper.narrow(_this _object(orb));
15: }
16:
17: private String[] ids = {
18: "IDL:omg.org/PortableServer/ServantLocator:1.0",
19: "IDL:omg.org/PortableServer/ServantManager:1.0" };
20:
21: public String[] _all_interfaces(org.omg.PortableServer.POA poa,
22: byte[] obj_id) {
23: return ids;
24: }
25:
26: public org.omg.CORBA.portable.OutputStream _invoke(String method,
27: org.omg.CORBA.portable.InputStream input,
28: org.omg.CORBA.portable.ResponseHandler handler)
29: throws org.omg.CORBA.SystemException {
30: throw new org.omg.CORBA.MARSHAL();
31: }
32:
33: }
|