
jadex.extension.rs.publish.mapper.IValueMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-platform-extension-webservice Show documentation
Show all versions of jadex-platform-extension-webservice Show documentation
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