/* */
/* */ public Collection findEntities(Method finderMethod, Object[] args, EntityEnterpriseContext ctx, GenericEntityObjectFactory factory)
/* */ {
/* 395 */ if (finderMethod.getName().equals("findAll"))
/* */ {
/* 397 */ String[] files = this.storeDir.list(new FilenameSuffixFilter(".ser"));
/* 398 */ ArrayList result = new ArrayList(files.length);
/* 399 */ for (int i = 0; i < files.length; i++) {
/* 400 */ String key = files[i].substring(0, files[i].length() - 4);
/* 401 */ result.add(factory.getEntityEJBObject(key));
/* */ }