001 package org.omg.PortableServer; 002 003 004 /** 005 * Generated from IDL interface "ServantLocator". 006 * 007 * @author JacORB IDL compiler V 2.3.0 (JBoss patch 6), 06-Jun-2007 008 * @version generated at Sep 22, 2012 10:58:02 AM 009 */ 010 011 public class ServantLocatorLocalTie 012 extends _ServantLocatorLocalBase 013 { 014 private ServantLocatorOperations _delegate; 015 016 public ServantLocatorLocalTie(ServantLocatorOperations delegate) 017 { 018 _delegate = delegate; 019 } 020 public ServantLocatorOperations _delegate() 021 { 022 return _delegate; 023 } 024 public void _delegate(ServantLocatorOperations delegate) 025 { 026 _delegate = delegate; 027 } 028 public void postinvoke(byte[] oid, org.omg.PortableServer.POA adapter, java.lang.String operation, org.omg.PortableServer.ServantLocatorPackage.Cookie the_cookie, org.omg.PortableServer.Servant the_servant) 029 { 030 _delegate.postinvoke(oid,adapter,operation,the_cookie,the_servant); 031 } 032 033 public org.omg.PortableServer.Servant preinvoke(byte[] oid, org.omg.PortableServer.POA adapter, java.lang.String operation, org.omg.PortableServer.ServantLocatorPackage.CookieHolder the_cookie) throws org.omg.PortableServer.ForwardRequest 034 { 035 return _delegate.preinvoke(oid,adapter,operation,the_cookie); 036 } 037 038 }