Calypso Gateway v1.0

codec.server
Class ServantRequest

java.lang.Object
  |
  +--codec.server.ServantRequest

public final class ServantRequest
extends java.lang.Object

Class representing Gateway-oriented model of CORBA Request.


Field Summary
private  java.lang.String aspName
           
private  long callID
           
private  java.lang.String pcoName
           
private  org.omg.CORBA.Request request
           
 
Constructor Summary
ServantRequest(java.lang.String pcoName_, java.lang.String aspName_, long callID_, org.omg.CORBA.Request request_)
           
 
Method Summary
 java.lang.String getAspName()
          Get PDU name associated with original call.
 long getCallID()
          Get "CALL_ID" PDU field associated with original call.
 java.lang.String getPcoName()
          Get PCO name through which original call was issued.
 org.omg.CORBA.Request getRequest()
          Get core part of the request.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

pcoName

private java.lang.String pcoName

aspName

private java.lang.String aspName

callID

private long callID

request

private org.omg.CORBA.Request request
Constructor Detail

ServantRequest

public ServantRequest(java.lang.String pcoName_,
                      java.lang.String aspName_,
                      long callID_,
                      org.omg.CORBA.Request request_)
Method Detail

getPcoName

public java.lang.String getPcoName()
Get PCO name through which original call was issued.

getAspName

public java.lang.String getAspName()
Get PDU name associated with original call.

getCallID

public long getCallID()
Get "CALL_ID" PDU field associated with original call.

getRequest

public org.omg.CORBA.Request getRequest()
Get core part of the request.

Calypso Gateway v1.0