FileDocCategorySizeDatePackage
InternalBindingValue.javaAPI DocJava SE 5 API1923Fri Aug 26 14:54:26 BST 2005com.sun.corba.se.impl.naming.pcosnaming

InternalBindingValue

public class InternalBindingValue extends Object implements Serializable
Class InternalBindingKey acts as a container for two objects, namely a org.omg.CosNaming::Binding and an CORBA object reference, which are the two components associated with the binding.

Fields Summary
public org.omg.CosNaming.BindingType
theBindingType
public String
strObjectRef
private transient org.omg.CORBA.Object
theObjectRef
Constructors Summary
public InternalBindingValue()

    
public InternalBindingValue(org.omg.CosNaming.BindingType b, String o)

	// Objectreference or Context
	theBindingType = b;
	strObjectRef = o;
    
Methods Summary
public org.omg.CORBA.ObjectgetObjectRef()

	return theObjectRef;
    
public voidsetObjectRef(org.omg.CORBA.Object ObjectRef)

	theObjectRef = ObjectRef;