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

com.jwebmp.entityassist.injections.integer.IntegerBigIntegerIDMapping Maven / Gradle / Ivy

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

import com.jwebmp.entityassist.services.EntityAssistIDMapping;

import java.math.BigInteger;

public class IntegerBigIntegerIDMapping
		extends EntityAssistIDMapping
{

	@Override
	public BigInteger toObject(Integer dbReturned)
	{
		return BigInteger.valueOf(dbReturned);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy