import java.rmi.*;
import java.rmi.server.*;

/**
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2002</p>
 * <p>Company: </p>
 * @author unascribed
 * @version 1.0
 */

public class Impl extends UnicastRemoteObject implements remoteinterface {

  private String nome;

  public Impl(String nome) throws RemoteException {
    this.nome = nome;
  }

  public String getDescription() throws RemoteException {
    return "Eu sou o objeto: " + nome;
  }
}