1 28 29 30 package org.objectweb.ccm.runtime; 31 32 import org.objectweb.corba.runtime.*; 33 34 37 public class CORBAServiceRef 38 { 39 public String corba_type; 41 public String orb_registration_name; 42 public org.omg.CORBA.Object initial_reference; 43 public String stringified_initial_reference; 44 45 public 47 CORBAServiceRef() 48 { 49 corba_type = "unknown"; 50 orb_registration_name = "unknown"; 51 initial_reference = null; 52 stringified_initial_reference = null; 53 } 54 55 public 57 CORBAServiceRef(String type, 58 String regname, 59 org.omg.CORBA.Object ref) 60 { 61 corba_type = type; 62 orb_registration_name = regname; 63 initial_reference = ref; 64 stringified_initial_reference = null; 65 } 66 67 public 69 CORBAServiceRef(String type, 70 String regname, 71 String sref) 72 { 73 corba_type = type; 74 orb_registration_name = regname; 75 initial_reference = null; 76 stringified_initial_reference = sref; 77 } 78 } 79 80 | Popular Tags |