1 7 8 package com.sun.corba.se.impl.ior ; 9 10 import java.util.Iterator ; 11 import org.omg.CORBA_2_3.portable.OutputStream ; 12 13 19 public class ObjectAdapterIdNumber extends ObjectAdapterIdArray { 20 private int poaid ; 21 22 public ObjectAdapterIdNumber( int poaid ) 23 { 24 super( "OldRootPOA", Integer.toString( poaid ) ) ; 25 this.poaid = poaid ; 26 } 27 28 public int getOldPOAId() 29 { 30 return poaid ; 31 } 32 } 33 | Popular Tags |