package Hallo;

public class Hallo_impl extends HalloPOA{
    org.omg.CORBA.ORB m_oORB;
    String m_strName;

    public Hallo_impl(org.omg.CORBA.ORB poORB, String pstrName){
	m_oORB = poORB;
	m_strName = pstrName;
    }

    public void sayHi(){
	System.out.println("Hallo!");
    }

    public void shutdown(){
	m_oORB.shutdown(false);
    }

    public String name(){
	return m_strName;
    }
}

