141142143144145146147148149
* * @param sample the sample to be created */ public void createSample(Sample sample) { if (database.containsKey(sample.getReference())) { throw new DuplicateReferenceException(sample.getReference()); } database.put(sample.getReference(), sample); }