import helloWorld.*;
import org.omg.CORBA.*;

public class GoodDayImpl 
    extends GoodDayPOA
{
    private String location;

    // constructor
    public GoodDayImpl( String location ) 
    {
	// initialize location
        this.location = location;
    }

    // method
    public myStruct helloStruct() 
    {

        myStruct s = new myStruct();
        s.a_string = "Hello World, from " + location;
        s.a_long = 183920;
        return s;
    }
}
