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

com.jwebmp.entityassist.injections.bigdecimal.BigDecimalToIntIDMapping Maven / Gradle / Ivy

There is a newer version: 0.68.0.1
Show newest version
package com.jwebmp.entityassist.injections.bigdecimal;

import com.jwebmp.entityassist.services.EntityAssistIDMapping;

import java.math.BigDecimal;

/**
 * Maps Big Decimals ID Returned Types
 */
public class BigDecimalToIntIDMapping
		extends EntityAssistIDMapping
{
	@Override
	public Integer toObject(BigDecimal dbReturned)
	{
		return dbReturned.intValue();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy