corba/src/share/classes/com/sun/corba/se/impl/protocol/SharedCDRClientRequestDispatcherImpl.java
author ohair
Tue, 25 May 2010 15:52:11 -0700
changeset 5555 b2b5ed3f0d0d
parent 4 02bb8761fcce
child 22362 1eb21f1e04c1
permissions -rw-r--r--
6943119: Rebrand source copyright notices Reviewed-by: darcy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
02bb8761fcce Initial load
duke
parents:
diff changeset
     1
/*
5555
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4
diff changeset
     2
 * Copyright (c) 2003, 2004, Oracle and/or its affiliates. All rights reserved.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
02bb8761fcce Initial load
duke
parents:
diff changeset
     4
 *
02bb8761fcce Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
02bb8761fcce Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5555
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
4
02bb8761fcce Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5555
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    10
 *
02bb8761fcce Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
02bb8761fcce Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
02bb8761fcce Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
02bb8761fcce Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
02bb8761fcce Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
02bb8761fcce Initial load
duke
parents:
diff changeset
    16
 *
02bb8761fcce Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
02bb8761fcce Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
02bb8761fcce Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
02bb8761fcce Initial load
duke
parents:
diff changeset
    20
 *
5555
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
b2b5ed3f0d0d 6943119: Rebrand source copyright notices
ohair
parents: 4
diff changeset
    23
 * questions.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
    24
 */
02bb8761fcce Initial load
duke
parents:
diff changeset
    25
02bb8761fcce Initial load
duke
parents:
diff changeset
    26
/*
02bb8761fcce Initial load
duke
parents:
diff changeset
    27
 * Licensed Materials - Property of IBM
02bb8761fcce Initial load
duke
parents:
diff changeset
    28
 * RMI-IIOP v1.0
02bb8761fcce Initial load
duke
parents:
diff changeset
    29
 * Copyright IBM Corp. 1998 1999  All Rights Reserved
02bb8761fcce Initial load
duke
parents:
diff changeset
    30
 *
02bb8761fcce Initial load
duke
parents:
diff changeset
    31
 */
02bb8761fcce Initial load
duke
parents:
diff changeset
    32
02bb8761fcce Initial load
duke
parents:
diff changeset
    33
package com.sun.corba.se.impl.protocol;
02bb8761fcce Initial load
duke
parents:
diff changeset
    34
02bb8761fcce Initial load
duke
parents:
diff changeset
    35
import java.io.IOException;
02bb8761fcce Initial load
duke
parents:
diff changeset
    36
import java.util.Iterator;
02bb8761fcce Initial load
duke
parents:
diff changeset
    37
import java.rmi.RemoteException;
02bb8761fcce Initial load
duke
parents:
diff changeset
    38
import java.nio.ByteBuffer;
02bb8761fcce Initial load
duke
parents:
diff changeset
    39
02bb8761fcce Initial load
duke
parents:
diff changeset
    40
import javax.rmi.CORBA.Util;
02bb8761fcce Initial load
duke
parents:
diff changeset
    41
import javax.rmi.CORBA.Tie;
02bb8761fcce Initial load
duke
parents:
diff changeset
    42
02bb8761fcce Initial load
duke
parents:
diff changeset
    43
import org.omg.CORBA.COMM_FAILURE;
02bb8761fcce Initial load
duke
parents:
diff changeset
    44
import org.omg.CORBA.INTERNAL;
02bb8761fcce Initial load
duke
parents:
diff changeset
    45
import org.omg.CORBA.SystemException;
02bb8761fcce Initial load
duke
parents:
diff changeset
    46
import org.omg.CORBA.CompletionStatus;
02bb8761fcce Initial load
duke
parents:
diff changeset
    47
import org.omg.CORBA.WrongTransaction;
02bb8761fcce Initial load
duke
parents:
diff changeset
    48
import org.omg.CORBA.Request;
02bb8761fcce Initial load
duke
parents:
diff changeset
    49
import org.omg.CORBA.NamedValue;
02bb8761fcce Initial load
duke
parents:
diff changeset
    50
import org.omg.CORBA.NVList;
02bb8761fcce Initial load
duke
parents:
diff changeset
    51
import org.omg.CORBA.Context;
02bb8761fcce Initial load
duke
parents:
diff changeset
    52
import org.omg.CORBA.ContextList;
02bb8761fcce Initial load
duke
parents:
diff changeset
    53
import org.omg.CORBA.ExceptionList;
02bb8761fcce Initial load
duke
parents:
diff changeset
    54
import org.omg.CORBA.TypeCode;
02bb8761fcce Initial load
duke
parents:
diff changeset
    55
import org.omg.CORBA.DATA_CONVERSION;
02bb8761fcce Initial load
duke
parents:
diff changeset
    56
import org.omg.CORBA.UNKNOWN;
02bb8761fcce Initial load
duke
parents:
diff changeset
    57
import org.omg.CORBA.portable.RemarshalException;
02bb8761fcce Initial load
duke
parents:
diff changeset
    58
import org.omg.CORBA_2_3.portable.InputStream;
02bb8761fcce Initial load
duke
parents:
diff changeset
    59
import org.omg.CORBA_2_3.portable.OutputStream;
02bb8761fcce Initial load
duke
parents:
diff changeset
    60
import org.omg.CORBA.portable.Delegate;
02bb8761fcce Initial load
duke
parents:
diff changeset
    61
import org.omg.CORBA.portable.ServantObject;
02bb8761fcce Initial load
duke
parents:
diff changeset
    62
import org.omg.CORBA.portable.ApplicationException;
02bb8761fcce Initial load
duke
parents:
diff changeset
    63
import org.omg.CORBA.portable.UnknownException;
02bb8761fcce Initial load
duke
parents:
diff changeset
    64
import org.omg.IOP.TAG_CODE_SETS;
02bb8761fcce Initial load
duke
parents:
diff changeset
    65
02bb8761fcce Initial load
duke
parents:
diff changeset
    66
import com.sun.org.omg.SendingContext.CodeBase;
02bb8761fcce Initial load
duke
parents:
diff changeset
    67
02bb8761fcce Initial load
duke
parents:
diff changeset
    68
import com.sun.corba.se.pept.broker.Broker;
02bb8761fcce Initial load
duke
parents:
diff changeset
    69
import com.sun.corba.se.pept.encoding.InputObject;
02bb8761fcce Initial load
duke
parents:
diff changeset
    70
import com.sun.corba.se.pept.encoding.OutputObject;
02bb8761fcce Initial load
duke
parents:
diff changeset
    71
import com.sun.corba.se.pept.protocol.ClientRequestDispatcher;
02bb8761fcce Initial load
duke
parents:
diff changeset
    72
import com.sun.corba.se.pept.protocol.MessageMediator;
02bb8761fcce Initial load
duke
parents:
diff changeset
    73
import com.sun.corba.se.pept.transport.Connection;
02bb8761fcce Initial load
duke
parents:
diff changeset
    74
import com.sun.corba.se.pept.transport.ConnectionCache;
02bb8761fcce Initial load
duke
parents:
diff changeset
    75
import com.sun.corba.se.pept.transport.ContactInfo;
02bb8761fcce Initial load
duke
parents:
diff changeset
    76
02bb8761fcce Initial load
duke
parents:
diff changeset
    77
import com.sun.corba.se.spi.ior.IOR;
02bb8761fcce Initial load
duke
parents:
diff changeset
    78
import com.sun.corba.se.spi.ior.iiop.GIOPVersion;
02bb8761fcce Initial load
duke
parents:
diff changeset
    79
import com.sun.corba.se.spi.ior.iiop.IIOPProfileTemplate;
02bb8761fcce Initial load
duke
parents:
diff changeset
    80
import com.sun.corba.se.spi.ior.iiop.CodeSetsComponent;
02bb8761fcce Initial load
duke
parents:
diff changeset
    81
import com.sun.corba.se.spi.oa.OAInvocationInfo;
02bb8761fcce Initial load
duke
parents:
diff changeset
    82
import com.sun.corba.se.spi.oa.ObjectAdapterFactory;
02bb8761fcce Initial load
duke
parents:
diff changeset
    83
import com.sun.corba.se.spi.orb.ORB;
02bb8761fcce Initial load
duke
parents:
diff changeset
    84
import com.sun.corba.se.spi.orb.ORBVersion;
02bb8761fcce Initial load
duke
parents:
diff changeset
    85
import com.sun.corba.se.spi.orb.ORBVersionFactory;
02bb8761fcce Initial load
duke
parents:
diff changeset
    86
import com.sun.corba.se.spi.protocol.CorbaMessageMediator;
02bb8761fcce Initial load
duke
parents:
diff changeset
    87
import com.sun.corba.se.spi.protocol.RequestDispatcherRegistry;
02bb8761fcce Initial load
duke
parents:
diff changeset
    88
import com.sun.corba.se.spi.transport.CorbaContactInfo ;
02bb8761fcce Initial load
duke
parents:
diff changeset
    89
import com.sun.corba.se.spi.transport.CorbaContactInfoList ;
02bb8761fcce Initial load
duke
parents:
diff changeset
    90
import com.sun.corba.se.spi.transport.CorbaContactInfoListIterator ;
02bb8761fcce Initial load
duke
parents:
diff changeset
    91
import com.sun.corba.se.spi.transport.CorbaConnection;
02bb8761fcce Initial load
duke
parents:
diff changeset
    92
02bb8761fcce Initial load
duke
parents:
diff changeset
    93
import com.sun.corba.se.spi.servicecontext.ServiceContext;
02bb8761fcce Initial load
duke
parents:
diff changeset
    94
import com.sun.corba.se.spi.servicecontext.ServiceContexts;
02bb8761fcce Initial load
duke
parents:
diff changeset
    95
import com.sun.corba.se.spi.servicecontext.UEInfoServiceContext;
02bb8761fcce Initial load
duke
parents:
diff changeset
    96
import com.sun.corba.se.spi.servicecontext.CodeSetServiceContext;
02bb8761fcce Initial load
duke
parents:
diff changeset
    97
import com.sun.corba.se.spi.servicecontext.MaxStreamFormatVersionServiceContext;
02bb8761fcce Initial load
duke
parents:
diff changeset
    98
import com.sun.corba.se.spi.servicecontext.SendingContextServiceContext;
02bb8761fcce Initial load
duke
parents:
diff changeset
    99
import com.sun.corba.se.impl.encoding.ByteBufferWithInfo;
02bb8761fcce Initial load
duke
parents:
diff changeset
   100
import com.sun.corba.se.impl.encoding.CDRInputObject;
02bb8761fcce Initial load
duke
parents:
diff changeset
   101
import com.sun.corba.se.impl.encoding.CDROutputObject;
02bb8761fcce Initial load
duke
parents:
diff changeset
   102
import com.sun.corba.se.impl.encoding.CDROutputStream;
02bb8761fcce Initial load
duke
parents:
diff changeset
   103
import com.sun.corba.se.impl.encoding.CodeSetComponentInfo;
02bb8761fcce Initial load
duke
parents:
diff changeset
   104
import com.sun.corba.se.impl.encoding.CodeSetConversion;
02bb8761fcce Initial load
duke
parents:
diff changeset
   105
import com.sun.corba.se.impl.encoding.MarshalOutputStream;
02bb8761fcce Initial load
duke
parents:
diff changeset
   106
import com.sun.corba.se.impl.encoding.MarshalInputStream;
02bb8761fcce Initial load
duke
parents:
diff changeset
   107
import com.sun.corba.se.impl.orbutil.ORBUtility;
02bb8761fcce Initial load
duke
parents:
diff changeset
   108
import com.sun.corba.se.impl.orbutil.ORBConstants;
02bb8761fcce Initial load
duke
parents:
diff changeset
   109
import com.sun.corba.se.impl.protocol.giopmsgheaders.ReplyMessage;
02bb8761fcce Initial load
duke
parents:
diff changeset
   110
import com.sun.corba.se.impl.protocol.giopmsgheaders.KeyAddr;
02bb8761fcce Initial load
duke
parents:
diff changeset
   111
import com.sun.corba.se.impl.protocol.giopmsgheaders.ProfileAddr;
02bb8761fcce Initial load
duke
parents:
diff changeset
   112
import com.sun.corba.se.impl.protocol.giopmsgheaders.ReferenceAddr;
02bb8761fcce Initial load
duke
parents:
diff changeset
   113
import com.sun.corba.se.impl.transport.CorbaContactInfoListIteratorImpl;
02bb8761fcce Initial load
duke
parents:
diff changeset
   114
import com.sun.corba.se.impl.util.JDKBridge;
02bb8761fcce Initial load
duke
parents:
diff changeset
   115
02bb8761fcce Initial load
duke
parents:
diff changeset
   116
/**
02bb8761fcce Initial load
duke
parents:
diff changeset
   117
 * ClientDelegate is the RMI client-side subcontract or representation
02bb8761fcce Initial load
duke
parents:
diff changeset
   118
 * It implements RMI delegate as well as our internal ClientRequestDispatcher
02bb8761fcce Initial load
duke
parents:
diff changeset
   119
 * interface.
02bb8761fcce Initial load
duke
parents:
diff changeset
   120
 */
02bb8761fcce Initial load
duke
parents:
diff changeset
   121
public class SharedCDRClientRequestDispatcherImpl
02bb8761fcce Initial load
duke
parents:
diff changeset
   122
    extends
02bb8761fcce Initial load
duke
parents:
diff changeset
   123
        CorbaClientRequestDispatcherImpl
02bb8761fcce Initial load
duke
parents:
diff changeset
   124
{
02bb8761fcce Initial load
duke
parents:
diff changeset
   125
    // REVISIT:
02bb8761fcce Initial load
duke
parents:
diff changeset
   126
    // Rather than have separate CDR subcontract,
02bb8761fcce Initial load
duke
parents:
diff changeset
   127
    // use same CorbaClientRequestDispatcherImpl but have
02bb8761fcce Initial load
duke
parents:
diff changeset
   128
    // different MessageMediator finishSendingRequest and waitForResponse
02bb8761fcce Initial load
duke
parents:
diff changeset
   129
    // handle what is done below.
02bb8761fcce Initial load
duke
parents:
diff changeset
   130
    // Benefit: then in ContactInfo no need to do a direct new
02bb8761fcce Initial load
duke
parents:
diff changeset
   131
    // of subcontract - does not complicate subcontract registry.
02bb8761fcce Initial load
duke
parents:
diff changeset
   132
02bb8761fcce Initial load
duke
parents:
diff changeset
   133
    public InputObject marshalingComplete(java.lang.Object self,
02bb8761fcce Initial load
duke
parents:
diff changeset
   134
                                          OutputObject outputObject)
02bb8761fcce Initial load
duke
parents:
diff changeset
   135
        throws
02bb8761fcce Initial load
duke
parents:
diff changeset
   136
            ApplicationException,
02bb8761fcce Initial load
duke
parents:
diff changeset
   137
            org.omg.CORBA.portable.RemarshalException
02bb8761fcce Initial load
duke
parents:
diff changeset
   138
    {
02bb8761fcce Initial load
duke
parents:
diff changeset
   139
      ORB orb = null;
02bb8761fcce Initial load
duke
parents:
diff changeset
   140
      CorbaMessageMediator messageMediator = null;
02bb8761fcce Initial load
duke
parents:
diff changeset
   141
      try {
02bb8761fcce Initial load
duke
parents:
diff changeset
   142
        messageMediator = (CorbaMessageMediator)
02bb8761fcce Initial load
duke
parents:
diff changeset
   143
            outputObject.getMessageMediator();
02bb8761fcce Initial load
duke
parents:
diff changeset
   144
02bb8761fcce Initial load
duke
parents:
diff changeset
   145
        orb = (ORB) messageMediator.getBroker();
02bb8761fcce Initial load
duke
parents:
diff changeset
   146
02bb8761fcce Initial load
duke
parents:
diff changeset
   147
        if (orb.subcontractDebugFlag) {
02bb8761fcce Initial load
duke
parents:
diff changeset
   148
            dprint(".marshalingComplete->: " + opAndId(messageMediator));
02bb8761fcce Initial load
duke
parents:
diff changeset
   149
        }
02bb8761fcce Initial load
duke
parents:
diff changeset
   150
02bb8761fcce Initial load
duke
parents:
diff changeset
   151
        CDROutputObject cdrOutputObject = (CDROutputObject) outputObject;
02bb8761fcce Initial load
duke
parents:
diff changeset
   152
02bb8761fcce Initial load
duke
parents:
diff changeset
   153
        //
02bb8761fcce Initial load
duke
parents:
diff changeset
   154
        // Create server-side input object.
02bb8761fcce Initial load
duke
parents:
diff changeset
   155
        //
02bb8761fcce Initial load
duke
parents:
diff changeset
   156
02bb8761fcce Initial load
duke
parents:
diff changeset
   157
        ByteBufferWithInfo bbwi = cdrOutputObject.getByteBufferWithInfo();
02bb8761fcce Initial load
duke
parents:
diff changeset
   158
        cdrOutputObject.getMessageHeader().setSize(bbwi.byteBuffer, bbwi.getSize());
02bb8761fcce Initial load
duke
parents:
diff changeset
   159
02bb8761fcce Initial load
duke
parents:
diff changeset
   160
        CDRInputObject cdrInputObject =
02bb8761fcce Initial load
duke
parents:
diff changeset
   161
            new CDRInputObject(orb, null, bbwi.byteBuffer,
02bb8761fcce Initial load
duke
parents:
diff changeset
   162
                               cdrOutputObject.getMessageHeader());
02bb8761fcce Initial load
duke
parents:
diff changeset
   163
        messageMediator.setInputObject(cdrInputObject);
02bb8761fcce Initial load
duke
parents:
diff changeset
   164
        cdrInputObject.setMessageMediator(messageMediator);
02bb8761fcce Initial load
duke
parents:
diff changeset
   165
02bb8761fcce Initial load
duke
parents:
diff changeset
   166
        //
02bb8761fcce Initial load
duke
parents:
diff changeset
   167
        // Dispatch
02bb8761fcce Initial load
duke
parents:
diff changeset
   168
        //
02bb8761fcce Initial load
duke
parents:
diff changeset
   169
02bb8761fcce Initial load
duke
parents:
diff changeset
   170
        // REVISIT: Impl cast.
02bb8761fcce Initial load
duke
parents:
diff changeset
   171
        ((CorbaMessageMediatorImpl)messageMediator).handleRequestRequest(
02bb8761fcce Initial load
duke
parents:
diff changeset
   172
            messageMediator);
02bb8761fcce Initial load
duke
parents:
diff changeset
   173
02bb8761fcce Initial load
duke
parents:
diff changeset
   174
        // InputStream must be closed on the InputObject so that its
02bb8761fcce Initial load
duke
parents:
diff changeset
   175
        // ByteBuffer can be released to the ByteBufferPool. We must do
02bb8761fcce Initial load
duke
parents:
diff changeset
   176
        // this before we re-assign the cdrInputObject reference below.
02bb8761fcce Initial load
duke
parents:
diff changeset
   177
        try { cdrInputObject.close(); }
02bb8761fcce Initial load
duke
parents:
diff changeset
   178
        catch (IOException ex) {
02bb8761fcce Initial load
duke
parents:
diff changeset
   179
            // No need to do anything since we're done with the input stream
02bb8761fcce Initial load
duke
parents:
diff changeset
   180
            // and cdrInputObject will be re-assigned a new client-side input
02bb8761fcce Initial load
duke
parents:
diff changeset
   181
            // object, (i.e. won't result in a corba error).
02bb8761fcce Initial load
duke
parents:
diff changeset
   182
02bb8761fcce Initial load
duke
parents:
diff changeset
   183
            if (orb.transportDebugFlag) {
02bb8761fcce Initial load
duke
parents:
diff changeset
   184
               dprint(".marshalingComplete: ignoring IOException - " + ex.toString());
02bb8761fcce Initial load
duke
parents:
diff changeset
   185
            }
02bb8761fcce Initial load
duke
parents:
diff changeset
   186
        }
02bb8761fcce Initial load
duke
parents:
diff changeset
   187
02bb8761fcce Initial load
duke
parents:
diff changeset
   188
        //
02bb8761fcce Initial load
duke
parents:
diff changeset
   189
        // Create client-side input object
02bb8761fcce Initial load
duke
parents:
diff changeset
   190
        //
02bb8761fcce Initial load
duke
parents:
diff changeset
   191
02bb8761fcce Initial load
duke
parents:
diff changeset
   192
        cdrOutputObject = (CDROutputObject) messageMediator.getOutputObject();
02bb8761fcce Initial load
duke
parents:
diff changeset
   193
        bbwi = cdrOutputObject.getByteBufferWithInfo();
02bb8761fcce Initial load
duke
parents:
diff changeset
   194
        cdrOutputObject.getMessageHeader().setSize(bbwi.byteBuffer, bbwi.getSize());
02bb8761fcce Initial load
duke
parents:
diff changeset
   195
        cdrInputObject =
02bb8761fcce Initial load
duke
parents:
diff changeset
   196
            new CDRInputObject(orb, null, bbwi.byteBuffer,
02bb8761fcce Initial load
duke
parents:
diff changeset
   197
                               cdrOutputObject.getMessageHeader());
02bb8761fcce Initial load
duke
parents:
diff changeset
   198
        messageMediator.setInputObject(cdrInputObject);
02bb8761fcce Initial load
duke
parents:
diff changeset
   199
        cdrInputObject.setMessageMediator(messageMediator);
02bb8761fcce Initial load
duke
parents:
diff changeset
   200
02bb8761fcce Initial load
duke
parents:
diff changeset
   201
        cdrInputObject.unmarshalHeader();
02bb8761fcce Initial load
duke
parents:
diff changeset
   202
02bb8761fcce Initial load
duke
parents:
diff changeset
   203
        InputObject inputObject = cdrInputObject;
02bb8761fcce Initial load
duke
parents:
diff changeset
   204
02bb8761fcce Initial load
duke
parents:
diff changeset
   205
        return processResponse(orb, messageMediator, inputObject);
02bb8761fcce Initial load
duke
parents:
diff changeset
   206
02bb8761fcce Initial load
duke
parents:
diff changeset
   207
      } finally {
02bb8761fcce Initial load
duke
parents:
diff changeset
   208
        if (orb.subcontractDebugFlag) {
02bb8761fcce Initial load
duke
parents:
diff changeset
   209
            dprint(".marshalingComplete<-: " + opAndId(messageMediator));
02bb8761fcce Initial load
duke
parents:
diff changeset
   210
        }
02bb8761fcce Initial load
duke
parents:
diff changeset
   211
      }
02bb8761fcce Initial load
duke
parents:
diff changeset
   212
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   213
02bb8761fcce Initial load
duke
parents:
diff changeset
   214
    protected void dprint(String msg)
02bb8761fcce Initial load
duke
parents:
diff changeset
   215
    {
02bb8761fcce Initial load
duke
parents:
diff changeset
   216
        ORBUtility.dprint("SharedCDRClientRequestDispatcherImpl", msg);
02bb8761fcce Initial load
duke
parents:
diff changeset
   217
    }
02bb8761fcce Initial load
duke
parents:
diff changeset
   218
}
02bb8761fcce Initial load
duke
parents:
diff changeset
   219
02bb8761fcce Initial load
duke
parents:
diff changeset
   220
// End of file.