package br.eti.faces.jruby.model.proxy;

//This interface will be implemented by MyCostumer
//Ruby class to allow integration with Java/Spring.
public interface IMyCostumer {

	public String getName();
	
	public String getAddress();
	
	public String getCountry();
}

