001    package org.omg.PortableInterceptor;
002    
003    
004    /**
005     * Generated from IDL interface "ServerRequestInterceptor".
006     *
007     * @author JacORB IDL compiler V 2.3.0 (JBoss patch 6), 06-Jun-2007
008     * @version generated at Jun 18, 2012 10:37:54 AM
009     */
010    
011    public class ServerRequestInterceptorLocalTie
012            extends _ServerRequestInterceptorLocalBase
013    {
014            private ServerRequestInterceptorOperations _delegate;
015    
016            public ServerRequestInterceptorLocalTie(ServerRequestInterceptorOperations delegate)
017            {
018                    _delegate = delegate;
019            }
020            public ServerRequestInterceptorOperations _delegate()
021            {
022                    return _delegate;
023            }
024            public void _delegate(ServerRequestInterceptorOperations delegate)
025            {
026                    _delegate = delegate;
027            }
028            public void receive_request(org.omg.PortableInterceptor.ServerRequestInfo ri) throws org.omg.PortableInterceptor.ForwardRequest
029            {
030    _delegate.receive_request(ri);
031            }
032    
033            public java.lang.String name()
034            {
035                    return _delegate.name();
036            }
037    
038            public void send_other(org.omg.PortableInterceptor.ServerRequestInfo ri) throws org.omg.PortableInterceptor.ForwardRequest
039            {
040    _delegate.send_other(ri);
041            }
042    
043            public void send_exception(org.omg.PortableInterceptor.ServerRequestInfo ri) throws org.omg.PortableInterceptor.ForwardRequest
044            {
045    _delegate.send_exception(ri);
046            }
047    
048            public void receive_request_service_contexts(org.omg.PortableInterceptor.ServerRequestInfo ri) throws org.omg.PortableInterceptor.ForwardRequest
049            {
050    _delegate.receive_request_service_contexts(ri);
051            }
052    
053            public void send_reply(org.omg.PortableInterceptor.ServerRequestInfo ri)
054            {
055    _delegate.send_reply(ri);
056            }
057    
058    }