/**
**
** MiddCor-C# DemoJava
**			CORBA Solution for .Net with C# Language mapping							 
**																			 
**				
** Copyright:
**			Middsol GmbH, Hamburg
**			Germany  2004
**			www.middsol.com
**			info@middsol.com	
**
*/

package JavaNames;


import java.rmi.RemoteException;
import javax.rmi.PortableRemoteObject;
import java.util.*;


public class GreetingsImpl extends PortableRemoteObject implements Greetings{

	public GreetingsImpl() throws RemoteException {
		super(); 
	}
	
	public String hello( String name ) throws RemoteException {
		System.out.println("Method executed: Greetings.hello('" + name + "')");
		return "Greetings to " + name;
	}



	public boolean _foo() 
		throws RemoteException {

		System.out.println("Method executed: Greetings._foo()");
		return true;
	}

	public int  FeeIn$US() 
		throws RemoteException {

		System.out.println("Method executed: Greetings.FeeIn$US()");
		return 99;

	}


}

