001 package org.omg.PortableServer; 002 003 004 /** 005 * Generated from IDL interface "ServantActivator". 006 * 007 * @author JacORB IDL compiler V 2.3.0 (JBoss patch 6), 06-Jun-2007 008 * @version generated at Jun 18, 2012 10:37:57 AM 009 */ 010 011 public class ServantActivatorLocalTie 012 extends _ServantActivatorLocalBase 013 { 014 private ServantActivatorOperations _delegate; 015 016 public ServantActivatorLocalTie(ServantActivatorOperations delegate) 017 { 018 _delegate = delegate; 019 } 020 public ServantActivatorOperations _delegate() 021 { 022 return _delegate; 023 } 024 public void _delegate(ServantActivatorOperations delegate) 025 { 026 _delegate = delegate; 027 } 028 public org.omg.PortableServer.Servant incarnate(byte[] oid, org.omg.PortableServer.POA adapter) throws org.omg.PortableServer.ForwardRequest 029 { 030 return _delegate.incarnate(oid,adapter); 031 } 032 033 public void etherealize(byte[] oid, org.omg.PortableServer.POA adapter, org.omg.PortableServer.Servant serv, boolean cleanup_in_progress, boolean remaining_activations) 034 { 035 _delegate.etherealize(oid,adapter,serv,cleanup_in_progress,remaining_activations); 036 } 037 038 }