http://docs.transfer-orm.com/wiki/Primary_Key_Management.cfm
Manual
Lastly, this can all be manually overwritten simply by setting the
primary key value via the set() method prior to the TransferObject being
created in the database, e.g.
||
user = getTransfer().new("User");
user.setUserID(1);
getTransfer().save(user);
This will attempt to insert the User record into the database with a ID
of '1'.
This is from the docs, sounds like what you're looking for...
http://docs.transfer-orm.com/wiki/Primary_Key_Management.cfm
Manual
Lastly, this can all be manually overwritten simply by setting the
primary key value via the set() method prior to the TransferObject being
created in the database, e.g.
||
user = getTransfer().new("User");
user.setUserID(1);
getTransfer().save(user);
This will attempt to insert the User record into the database with a ID
of '1'.