01: package org.omg.PortableServer;
02:
03: /** stream-based skeleton class */
04:
05: import org.omg.PortableServer.POA;
06:
07: public class ServantActivatorPOATie extends ServantActivatorPOA {
08: private ServantActivatorOperations _delegate;
09: private POA _poa;
10:
11: public ServantActivatorPOATie(ServantActivatorOperations delegate) {
12: _delegate = delegate;
13: }
14:
15: public ServantActivatorPOATie(ServantActivatorOperations delegate,
16: POA poa) {
17: _delegate = delegate;
18: _poa = poa;
19: }
20:
21: public ServantActivator _this () {
22: return ServantActivatorHelper.narrow(_this _object());
23: }
24:
25: public ServantActivatorOperations _delegate() {
26: return _delegate;
27: }
28:
29: public void _delegate(ServantActivatorOperations delegate) {
30: _delegate = delegate;
31: }
32:
33: public void etherealize(byte[] oid,
34: org.omg.PortableServer.POA adapter,
35: org.omg.PortableServer.Servant serv,
36: boolean cleanup_in_progress, boolean remaining_activations) {
37: _delegate.etherealize(oid, adapter, serv, cleanup_in_progress,
38: remaining_activations);
39: }
40:
41: public org.omg.PortableServer.Servant incarnate(byte[] oid,
42: org.omg.PortableServer.POA adapter)
43: throws org.omg.PortableServer.ForwardRequest {
44: return _delegate.incarnate(oid, adapter);
45: }
46: }
|