1 package test.load.imr;2 3 import org.omg.CORBA.*;4 5 public class GoodDayImpl 6 extends GoodDayPOA7 {8 private String location;9 10 public GoodDayImpl( String location ) 11 {12 this.location = location;13 }14 15 public void hello_simple( int who ) 16 {17 System.out.println("Rcv call from " + who);18 }19 }20