1 package test.wsdl.arrays3; 2 3 public interface AddrBookService extends java.rmi.Remote { 4 public void addEntry(String name, Address address) throws java.rmi.RemoteException ; 5 public Address[] getAddressFromNames(String [] names) throws java.rmi.RemoteException ; 6 public Address getAddressFromName(String name) throws java.rmi.RemoteException ; 7 public Address[] echoAddresses(Address[] addrs) throws java.rmi.RemoteException ; 8 } 9 | Popular Tags |