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