FileDocCategorySizeDatePackage
ObjectAdapterIdNumber.javaAPI DocJava SE 5 API924Fri Aug 26 14:54:22 BST 2005com.sun.corba.se.impl.ior

ObjectAdapterIdNumber

public class ObjectAdapterIdNumber extends ObjectAdapterIdArray
ObjectAdapterIdNumber is used to represent pre-JDK 1.4 POA adapter IDs. The POA ID was simply represented as a single integer, which was mapped to the actual POA instance. Here, we just represent these internally as arrays of the form { "OldRootPOA", "" }, and provide an extra method to get the number back.

Fields Summary
private int
poaid
Constructors Summary
public ObjectAdapterIdNumber(int poaid)

	super( "OldRootPOA", Integer.toString( poaid ) ) ;
	this.poaid = poaid ;
    
Methods Summary
public intgetOldPOAId()

	return poaid ;