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);
Thanks,
Thomas
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]