001    package org.omg.PortableInterceptor;
002    
003    
004    /**
005     * Generated from IDL interface "RequestInfo".
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 RequestInfoLocalTie
012            extends _RequestInfoLocalBase
013    {
014            private RequestInfoOperations _delegate;
015    
016            public RequestInfoLocalTie(RequestInfoOperations delegate)
017            {
018                    _delegate = delegate;
019            }
020            public RequestInfoOperations _delegate()
021            {
022                    return _delegate;
023            }
024            public void _delegate(RequestInfoOperations delegate)
025            {
026                    _delegate = delegate;
027            }
028            public org.omg.IOP.ServiceContext get_request_service_context(int id)
029            {
030                    return _delegate.get_request_service_context(id);
031            }
032    
033            public org.omg.IOP.ServiceContext get_reply_service_context(int id)
034            {
035                    return _delegate.get_reply_service_context(id);
036            }
037    
038            public org.omg.CORBA.Object forward_reference()
039            {
040                    return _delegate.forward_reference();
041            }
042    
043            public java.lang.String[] operation_context()
044            {
045                    return _delegate.operation_context();
046            }
047    
048            public org.omg.CORBA.TypeCode[] exceptions()
049            {
050                    return _delegate.exceptions();
051            }
052    
053            public short sync_scope()
054            {
055                    return _delegate.sync_scope();
056            }
057    
058            public short reply_status()
059            {
060                    return _delegate.reply_status();
061            }
062    
063            public boolean response_expected()
064            {
065                    return _delegate.response_expected();
066            }
067    
068            public java.lang.String[] contexts()
069            {
070                    return _delegate.contexts();
071            }
072    
073            public java.lang.String operation()
074            {
075                    return _delegate.operation();
076            }
077    
078            public org.omg.Dynamic.Parameter[] arguments()
079            {
080                    return _delegate.arguments();
081            }
082    
083            public org.omg.CORBA.Any result()
084            {
085                    return _delegate.result();
086            }
087    
088            public org.omg.CORBA.Any get_slot(int id) throws org.omg.PortableInterceptor.InvalidSlot
089            {
090                    return _delegate.get_slot(id);
091            }
092    
093            public int request_id()
094            {
095                    return _delegate.request_id();
096            }
097    
098    }