All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jadex.webservice.examples.ws.geoip.IGeoIPService Maven / Gradle / Ivy

Go to download

The Jadex web service applications package contains several example applications, benchmarks and testcases using web service integration.

There is a newer version: 4.0.267
Show newest version
package jadex.webservice.examples.ws.geoip;

import jadex.commons.future.IFuture;
import jadex.webservice.examples.ws.geoip.gen.GeoIP;

/**
 *  Example web service interface in Jadex.
 *  The original synchronous web service interface
 *  is made asynchronous to fit the programming model
 *  and avoid deadlocks.
 *  
 *  Note: As parameters the JAX-WS generated data types
 *  have to be used.
 */
public interface IGeoIPService
{
	/**
	 *  Get geo information for ip.
	 */
	public IFuture getGeoIP(String ip);
	
	/**
	 *  Get geo context.
	 */
	public IFuture GetGeoIPContext();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy