001 package org.omg.PortableInterceptor;
002
003
004 /**
005 * Generated from IDL interface "IORInterceptor".
006 *
007 * @author JacORB IDL compiler V 2.3.0 (JBoss patch 6), 06-Jun-2007
008 * @version generated at Nov 6, 2011 12:20:31 AM
009 */
010
011 public class IORInterceptorLocalTie
012 extends _IORInterceptorLocalBase
013 {
014 private IORInterceptorOperations _delegate;
015
016 public IORInterceptorLocalTie(IORInterceptorOperations delegate)
017 {
018 _delegate = delegate;
019 }
020 public IORInterceptorOperations _delegate()
021 {
022 return _delegate;
023 }
024 public void _delegate(IORInterceptorOperations delegate)
025 {
026 _delegate = delegate;
027 }
028 public java.lang.String name()
029 {
030 return _delegate.name();
031 }
032
033 public void establish_components(org.omg.PortableInterceptor.IORInfo info)
034 {
035 _delegate.establish_components(info);
036 }
037
038 }