/** This is the implementation class for the remote product objects. */ public class ProductImpl implements Product { /** Constructs a product implementation @param n the product name */ public ProductImpl(String n) { name = n; } public String getDescription() { return "I am a " + name + ". Buy me!"; } private String name; }