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

jadex.extension.rs.publish.mapper.IValueMapper Maven / Gradle / Ivy

Go to download

The Jadex webservice platform extension package contains basic functionality for WSDL web services and REST web services.

The newest version!
package jadex.extension.rs.publish.mapper;

/**
 *  The value mapper interface. It is used for all mappers
 *  that have the task to convert between different representations.
 */
public interface IValueMapper
{	
	/**
	 *  Convert a value.
	 *  @param value The value to convert.
	 *  @return The converted value.
	 */
	public Object convertValue(Object value) throws Exception;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy