1 28 29 30 package org.objectweb.ccm.runtime; 31 32 import org.objectweb.corba.runtime.*; 33 34 37 public class LocalConnectionImpl 38 extends org.omg.CORBA.LocalObject  39 implements org.omg.Components.LocalConnection 40 { 41 private org.omg.Components.Cookie _cookie; 43 private org.omg.CORBA.Object _ref; 44 45 public 47 LocalConnectionImpl(org.omg.Components.Cookie lck, 48 org.omg.CORBA.Object ref) 49 { 50 _cookie = lck; 52 _ref = ref; 53 } 54 55 59 final public org.omg.Components.Cookie 60 ck() 61 { 62 return _cookie; 63 } 64 65 final public org.omg.CORBA.Object  66 ref() 67 { 68 return _ref; 69 } 70 } | Popular Tags |