01: /**
02: * PhoneBookSoapBindingImpl.java
03: *
04: * This file was auto-generated from WSDL
05: * by the Apache Axis 1.2beta Mar 31, 2004 (12:47:03 EST) WSDL2Java emitter.
06: */package phoneList.business.axis;
07:
08: public class PhoneBookSoapBindingImpl implements
09: phoneList.business.axis.PhoneList {
10: public java.lang.Object[][] getLists()
11: throws java.rmi.RemoteException {
12: return null;
13: }
14:
15: public void addPerson(java.lang.String firstName,
16: java.lang.String lastName, java.lang.String phoneNumber)
17: throws java.rmi.RemoteException {
18: }
19:
20: public void deletePerson(java.lang.String id)
21: throws java.rmi.RemoteException {
22: }
23:
24: public void modifyPerson(java.lang.String id,
25: java.lang.String newFirstName,
26: java.lang.String newLastName,
27: java.lang.String newPhoneNumber)
28: throws java.rmi.RemoteException {
29: }
30:
31: public java.lang.String[] getPersonData(java.lang.String id)
32: throws java.rmi.RemoteException {
33: return null;
34: }
35:
36: }
|