// // Interface Remota para servicos de Person // public interface Person { public int getAge() throws Throwable; public String getName() throws Throwable; public void terminate() throws Throwable; }