com.jwebmp.entityassist.injections.integer.IntegerBigIntegerIDMapping Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of entity-assist Show documentation
Show all versions of entity-assist Show documentation
A Domain Driven SQL Builder Generator for JPMS/JDK8
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);
}
}