1 /**2 * StationInfo.java3 *4 * This file was auto-generated from WSDL5 * by the Apache Axis WSDL2Java emitter.6 */7 8 package com.capeclear.www.GlobalWeather_wsdl;9 10 import java.rmi.Remote ;11 import java.rmi.RemoteException ;12 import com.capeclear.www.GlobalWeather_xsd.Station;13 14 public interface StationInfo extends Remote {15 public Station getStation(String code) throws RemoteException ;16 public boolean isValidCode(String code) throws RemoteException ;17 public String [] listCountries() throws RemoteException ;18 public Station[] searchByCode(String code) throws RemoteException ;19 public Station[] searchByCountry(String country) throws RemoteException ;20 public Station[] searchByName(String name) throws RemoteException ;21 public Station[] searchByRegion(String region) throws RemoteException ;22 }23