1 7 8 package phoneList.business.axis; 9 10 public class PhoneBookSoapBindingImpl implements phoneList.business.axis.PhoneList{ 11 public java.lang.Object [][] getLists() throws java.rmi.RemoteException { 12 return null; 13 } 14 15 public void addPerson(java.lang.String firstName, java.lang.String lastName, java.lang.String phoneNumber) throws java.rmi.RemoteException { 16 } 17 18 public void deletePerson(java.lang.String id) throws java.rmi.RemoteException { 19 } 20 21 public void modifyPerson(java.lang.String id, java.lang.String newFirstName, java.lang.String newLastName, java.lang.String newPhoneNumber) throws java.rmi.RemoteException { 22 } 23 24 public java.lang.String [] getPersonData(java.lang.String id) throws java.rmi.RemoteException { 25 return null; 26 } 27 28 } 29 | Popular Tags |