1 25 26 package org.objectweb.jonas.jtests.beans.inherit; 28 29 import java.rmi.RemoteException ; 30 31 public interface User extends Person, Itf1 { 32 33 public String getValue(int i) throws RemoteException ; 35 36 public void changePassword(String p) throws RemoteException ; 37 38 public String getPassword() throws RemoteException ; 39 40 public String getData() throws RemoteException ; 41 } 42 | Popular Tags |