1 7 22 23 package com.sun.corba.se.impl.naming.pcosnaming; 24 25 import org.omg.CORBA.Object ; 26 import org.omg.CosNaming.BindingType ; 27 import java.io.Serializable ; 28 29 34 public class InternalBindingValue 35 implements Serializable 36 { 37 public BindingType theBindingType; 38 public String strObjectRef; 43 transient private org.omg.CORBA.Object theObjectRef; 44 45 public InternalBindingValue() { 47 } 48 49 public InternalBindingValue(BindingType b, String o) { 51 theBindingType = b; 53 strObjectRef = o; 54 } 55 56 public org.omg.CORBA.Object getObjectRef( ) 57 { 58 return theObjectRef; 59 } 60 61 public void setObjectRef( org.omg.CORBA.Object ObjectRef ) 62 { 63 theObjectRef = ObjectRef; 64 } 65 66 } 67 | Popular Tags |