Changes between Version 9 and Version 10 of Ticket #725, comment 37
- Timestamp:
- Mar 17, 2015, 10:57:37 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #725, comment 37
v9 v10 25 25 4. Data access object (DAO) class/file `BioplateType.java` in `src/net/sf/basedb/meludi/dao/` updated with new bioplate type `DNA`. 26 26 27 5. Data access object (DAO) class/file ` ReactionPlate.java` in `src/net/sf/basedb/meludi/dao/` updated with new public static method `List<ReactionPlate> findActiveByBioPlateType(DbControl dc, BioplateType bioPlateType, Subtype subtype, String prefix, int numFreeWells, Annotationtype runDateAnnotation)`. It returns a list of active reaction plates which can hold biomaterial items of the given subtype and have names starting with an optional prefix.27 5. Data access object (DAO) class/file `Dna.java` in `src/net/sf/basedb/meludi/dao/` updated with new public static method `Dna findByName(DbControl dc, String name)`. 28 28 29 6. Data access object (DAO) class/file ` Subtype.java` in `src/net/sf/basedb/meludi/dao/` updated with new public static final subtype `EXTRACTION_PROTOCOL` for protocol items.29 6. Data access object (DAO) class/file `ReactionPlate.java` in `src/net/sf/basedb/meludi/dao/` updated with new public static method `List<ReactionPlate> findActiveByBioPlateType(DbControl dc, BioplateType bioPlateType, Subtype subtype, String prefix, int numFreeWells, Annotationtype runDateAnnotation)`. It returns a list of active reaction plates which can hold biomaterial items of the given subtype and have names starting with an optional prefix. 30 30 31 7. Java servlet class/file `InstallServlet.java` in `src/net/sf/basedb/meludi/servlet/` updated with new bioplate type `BioplateType.DNA`, annotation type category `Subtype.DNA`, and new annotation types. 31 7. Data access object (DAO) class/file `Rna.java` in `src/net/sf/basedb/meludi/dao/` updated with new public static methods `Rna findByName(DbControl dc, String name)` and `List<Rna> findUnquantifiedRna(DbControl dc)`. 32 33 8. Data access object (DAO) class/file `Subtype.java` in `src/net/sf/basedb/meludi/dao/` updated with new public static final subtype `EXTRACTION_PROTOCOL` for protocol items. 34 35 9. Java servlet class/file `InstallServlet.java` in `src/net/sf/basedb/meludi/servlet/` updated with new bioplate type `BioplateType.DNA`, annotation type category `Subtype.DNA`, and new annotation types.