001 package org.omg.PortableInterceptor; 002 003 004 /** 005 * Generated from IDL interface "ORBInitInfo". 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:00 AM 009 */ 010 011 public class ORBInitInfoLocalTie 012 extends _ORBInitInfoLocalBase 013 { 014 private ORBInitInfoOperations _delegate; 015 016 public ORBInitInfoLocalTie(ORBInitInfoOperations delegate) 017 { 018 _delegate = delegate; 019 } 020 public ORBInitInfoOperations _delegate() 021 { 022 return _delegate; 023 } 024 public void _delegate(ORBInitInfoOperations delegate) 025 { 026 _delegate = delegate; 027 } 028 public org.omg.CORBA.Object resolve_initial_references(java.lang.String id) throws org.omg.PortableInterceptor.ORBInitInfoPackage.InvalidName 029 { 030 return _delegate.resolve_initial_references(id); 031 } 032 033 public void add_client_request_interceptor(org.omg.PortableInterceptor.ClientRequestInterceptor interceptor) throws org.omg.PortableInterceptor.ORBInitInfoPackage.DuplicateName 034 { 035 _delegate.add_client_request_interceptor(interceptor); 036 } 037 038 public void add_ior_interceptor(org.omg.PortableInterceptor.IORInterceptor interceptor) throws org.omg.PortableInterceptor.ORBInitInfoPackage.DuplicateName 039 { 040 _delegate.add_ior_interceptor(interceptor); 041 } 042 043 public java.lang.String orb_id() 044 { 045 return _delegate.orb_id(); 046 } 047 048 public org.omg.IOP.CodecFactory codec_factory() 049 { 050 return _delegate.codec_factory(); 051 } 052 053 public java.lang.String[] arguments() 054 { 055 return _delegate.arguments(); 056 } 057 058 public int allocate_slot_id() 059 { 060 return _delegate.allocate_slot_id(); 061 } 062 063 public void add_server_request_interceptor(org.omg.PortableInterceptor.ServerRequestInterceptor interceptor) throws org.omg.PortableInterceptor.ORBInitInfoPackage.DuplicateName 064 { 065 _delegate.add_server_request_interceptor(interceptor); 066 } 067 068 public void register_policy_factory(int type, org.omg.PortableInterceptor.PolicyFactory policy_factory) 069 { 070 _delegate.register_policy_factory(type,policy_factory); 071 } 072 073 public void register_initial_reference(java.lang.String id, org.omg.CORBA.Object obj) throws org.omg.PortableInterceptor.ORBInitInfoPackage.InvalidName 074 { 075 _delegate.register_initial_reference(id,obj); 076 } 077 078 }