com.jwebmp.entityassist.injections.strings.StringLongIDMapping 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.strings;
import com.jwebmp.entityassist.services.EntityAssistIDMapping;
public class StringLongIDMapping
extends EntityAssistIDMapping
{
@Override
public Long toObject(String dbReturned)
{
return Long.valueOf(dbReturned);
}
}