001 package org.omg.PortableInterceptor; 002 003 004 /** 005 * Generated from IDL interface "ClientRequestInfo". 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 ClientRequestInfoLocalTie 012 extends _ClientRequestInfoLocalBase 013 { 014 private ClientRequestInfoOperations _delegate; 015 016 public ClientRequestInfoLocalTie(ClientRequestInfoOperations delegate) 017 { 018 _delegate = delegate; 019 } 020 public ClientRequestInfoOperations _delegate() 021 { 022 return _delegate; 023 } 024 public void _delegate(ClientRequestInfoOperations delegate) 025 { 026 _delegate = delegate; 027 } 028 public java.lang.String received_exception_id() 029 { 030 return _delegate.received_exception_id(); 031 } 032 033 public org.omg.IOP.TaggedComponent get_effective_component(int id) 034 { 035 return _delegate.get_effective_component(id); 036 } 037 038 public org.omg.CORBA.Object effective_target() 039 { 040 return _delegate.effective_target(); 041 } 042 043 public org.omg.CORBA.Object target() 044 { 045 return _delegate.target(); 046 } 047 048 public org.omg.IOP.ServiceContext get_request_service_context(int id) 049 { 050 return _delegate.get_request_service_context(id); 051 } 052 053 public org.omg.CORBA.Any get_slot(int id) throws org.omg.PortableInterceptor.InvalidSlot 054 { 055 return _delegate.get_slot(id); 056 } 057 058 public java.lang.String[] contexts() 059 { 060 return _delegate.contexts(); 061 } 062 063 public org.omg.CORBA.Any received_exception() 064 { 065 return _delegate.received_exception(); 066 } 067 068 public void add_request_service_context(org.omg.IOP.ServiceContext service_context, boolean replace) 069 { 070 _delegate.add_request_service_context(service_context,replace); 071 } 072 073 public org.omg.CORBA.Policy get_request_policy(int type) 074 { 075 return _delegate.get_request_policy(type); 076 } 077 078 public org.omg.IOP.ServiceContext get_reply_service_context(int id) 079 { 080 return _delegate.get_reply_service_context(id); 081 } 082 083 public int request_id() 084 { 085 return _delegate.request_id(); 086 } 087 088 public org.omg.Dynamic.Parameter[] arguments() 089 { 090 return _delegate.arguments(); 091 } 092 093 public org.omg.CORBA.Any result() 094 { 095 return _delegate.result(); 096 } 097 098 public boolean response_expected() 099 { 100 return _delegate.response_expected(); 101 } 102 103 public short sync_scope() 104 { 105 return _delegate.sync_scope(); 106 } 107 108 public short reply_status() 109 { 110 return _delegate.reply_status(); 111 } 112 113 public java.lang.String[] operation_context() 114 { 115 return _delegate.operation_context(); 116 } 117 118 public org.omg.CORBA.TypeCode[] exceptions() 119 { 120 return _delegate.exceptions(); 121 } 122 123 public org.omg.IOP.TaggedComponent[] get_effective_components(int id) 124 { 125 return _delegate.get_effective_components(id); 126 } 127 128 public java.lang.String operation() 129 { 130 return _delegate.operation(); 131 } 132 133 public org.omg.IOP.TaggedProfile effective_profile() 134 { 135 return _delegate.effective_profile(); 136 } 137 138 public org.omg.CORBA.Object forward_reference() 139 { 140 return _delegate.forward_reference(); 141 } 142 143 }