On 19.09.15 23:02, Thomas Fox wrote:
> Hi,
> 
> for 
> https://issues.apache.org/jira/browse/TORQUE-334
> I'd like to change the name of the existing retriebeByPks methods to 
> retrieveByObjectKeys.
> 
> Any objections or better ideas ?
> 
> Example:
> BaseBookPeer now has 2 methods:
> 
> public static List<Book> retrieveByPKs(Collection<ObjectKey> pks);
> public static List<Book> retrieveByPKs(Collection<ObjectKey> pks, Connection 
> dbcon);
> 
> These methods would be renamed to
> 
> public static List<Book> retrieveByObjectKeys(Collection<ObjectKey> pks);
> public static List<Book> retrieveByObjectKeys(Collection<ObjectKey> pks, 
> Connection dbcon);
> 
> to be able to add the following methods (which would have the same erasure as 
> the unrenamed methods)
> 
> public static List<Book> retrieveByPKs(Collection<Integer> pks);
> public static List<Book> retrieveByPKs(Collection<Integer> pks, Connection 
> dbcon);

+1
Go ahead.

Bye, Thomas.



---------------------------------------------------------------------
To unsubscribe, e-mail: torque-dev-unsubscr...@db.apache.org
For additional commands, e-mail: torque-dev-h...@db.apache.org

Reply via email to