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

org.sfm.map.FieldMapper Maven / Gradle / Ivy

package org.sfm.map;

public interface FieldMapper {
	/**
	 * map source object to target object.
	 * @param source object to map from
	 * @param target object to map to
     * @param context the mapping context
	 * @throws Exception if an exception occurs
	 */
	void mapTo(S source, T target, MappingContext context) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy