/**
**
** MiddCor-C# DemoJava
**			CORBA Solution for .Net with C# Language mapping							 
**																			 
**				
** Copyright:
**			Middsol GmbH, Hamburg
**			Germany  2004
**			www.middsol.com
**			info@middsol.com	
**
*/

package Attributes;

import java.rmi.Remote;
import java.rmi.RemoteException;

public interface Greetings extends Remote  {

	void setFirstName( String name) 
		throws RemoteException;

	String getFirstName() 
		throws RemoteException;


	void setBar( boolean oBar)
		throws RemoteException;

	boolean isBar()
		throws RemoteException;

	boolean getBar()
		throws RemoteException;


}	

