1 26 27 package org.objectweb.openccm.Containers; 28 29 36 37 public class OperationCallContext 38 extends org.omg.CORBA.LocalObject 39 implements CallContext 40 { 41 47 50 protected java.lang.String the_operation_name_; 51 52 55 protected CallContext the_parent_; 56 57 63 67 public 68 OperationCallContext(CallContext parent, 69 java.lang.String op_name) 70 { 71 the_parent_ = parent; 72 the_operation_name_ = op_name; 73 } 74 75 81 87 93 public CallCoordinator 94 get_call_coordinator(java.lang.String op_name) 95 { 96 return the_parent_.get_call_coordinator(op_name); 97 } 98 99 105 public java.lang.String 106 uid() 107 { 108 return the_parent_.uid(); 109 } 110 111 117 public java.lang.String 118 operation_name() 119 { 120 return the_operation_name_; 121 } 122 123 129 public CallContext 130 duplicate(java.lang.String op_name) 131 { 132 return null; 136 } 137 } 138 | Popular Tags |