if( identity == null )
{
IdentityGenerator idGen = model.module().identityGenerator();
if( idGen == null )
{
throw new NoSuchCompositeException(IdentityGenerator.class.getName(), model.module().name() );
}
identity = idGen.generate( model.model().type() );
}
EntityBuilder<T> builder;