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