コード例 #1
0
  public void createBarcodeLabel(BarcodeLabel barcodeLabel) {
    iLimsAdminDao.createBarcodeLabel(barcodeLabel);

    // Create child data
    for (Iterator<BarcodeLabelData> iterator = barcodeLabel.getBarcodeLabelData().iterator();
        iterator.hasNext(); ) {
      BarcodeLabelData barcodeLabelData = (BarcodeLabelData) iterator.next();
      barcodeLabelData.setBarcodeLabel(barcodeLabel);
      createBarcodeLabelData(barcodeLabelData);
    }
  }
コード例 #2
0
 public List<BiospecimenUidTemplate> searchPageableBiospecimenUidTemplates(
     BiospecimenUidTemplate object, int first, int count) {
   return iLimsAdminDao.searchPageableBiospecimenUidTemplates(object, first, count);
 }
コード例 #3
0
 public BiospecimenUidTemplate searchBiospecimenUidTemplate(
     BiospecimenUidTemplate biospecimenUidTemplate) {
   return iLimsAdminDao.searchBiospecimenUidTemplate(biospecimenUidTemplate);
 }
コード例 #4
0
 public List<BiospecimenUidToken> getBiospecimenUidTokens() {
   return iLimsAdminDao.getBiospecimenUidTokens();
 }
コード例 #5
0
 public void deleteBarcodeLabel(BarcodeLabel barcodeLabel) {
   iLimsAdminDao.deleteBarcodeLabel(barcodeLabel);
 }
コード例 #6
0
 public List<BarcodeLabel> searchPageableBarcodeLabels(
     BarcodeLabel object, int first, int count, List<Study> studyListForUser) {
   return iLimsAdminDao.searchPageableBarcodeLabels(object, first, count, studyListForUser);
 }
コード例 #7
0
 public List<BarcodeLabel> getBarcodeLabelTemplates() {
   return iLimsAdminDao.getBarcodeLabelTemplates();
 }
コード例 #8
0
 public List<BarcodeLabelData> getBarcodeLabelDataByBarcodeLabel(BarcodeLabel barcodeLabel) {
   return iLimsAdminDao.getBarcodeLabelDataByBarcodeLabel(barcodeLabel);
 }
コード例 #9
0
 public void deleteBiospecimenUidTemplate(BiospecimenUidTemplate biospecimenUidTemplate) {
   iLimsAdminDao.deleteBiospecimenUidTemplate(biospecimenUidTemplate);
 }
コード例 #10
0
 public List<BarcodeLabel> searchPageableBarcodeLabels(BarcodeLabel object, int first, int count) {
   return iLimsAdminDao.searchPageableBarcodeLabels(object, first, count);
 }
コード例 #11
0
 public long getBarcodeLabelCount(BarcodeLabel object) {
   return iLimsAdminDao.getBarcodeLabelCount(object);
 }
コード例 #12
0
 public BarcodeLabelData searchBarcodeLabelData(BarcodeLabelData barcodeLabelData) {
   return iLimsAdminDao.searchBarcodeLabelData(barcodeLabelData);
 }
コード例 #13
0
 public BarcodeLabel searchBarcodeLabel(BarcodeLabel barcodeLabel) {
   return iLimsAdminDao.searchBarcodeLabel(barcodeLabel);
 }
コード例 #14
0
 public void updateBarcodeLabelData(BarcodeLabelData barcodeLabelData) {
   iLimsAdminDao.updateBarcodeLabelData(barcodeLabelData);
 }
コード例 #15
0
 public void deleteBarcodeLabelData(BarcodeLabelData barcodeLabelData) {
   iLimsAdminDao.deleteBarcodeLabelData(barcodeLabelData);
 }
コード例 #16
0
 public List<Study> getStudyListAssignedToBarcodeLabel() {
   return iLimsAdminDao.getStudyListAssignedToBarcodeLabel();
 }
コード例 #17
0
 public List<Study> getStudyListAssignedToBiospecimenUidTemplate() {
   return iLimsAdminDao.getStudyListAssignedToBiospecimenUidTemplate();
 }
コード例 #18
0
 public BiospecimenUidTemplate getBiospecimenUidTemplate(Study study) {
   return iLimsAdminDao.getBiospecimenUidTemplate(study);
 }
コード例 #19
0
 public List<BarcodeLabel> getBarcodeLabelsByStudy(Study study) {
   return iLimsAdminDao.getBarcodeLabelsByStudy(study);
 }
コード例 #20
0
 public void updateBiospecimenUidTemplate(BiospecimenUidTemplate biospecimenUidTemplate) {
   iLimsAdminDao.updateBiospecimenUidTemplate(biospecimenUidTemplate);
 }
コード例 #21
0
 public Long getBarcodeLabelCount(BarcodeLabel object, List<Study> studyListForUser) {
   return iLimsAdminDao.getBarcodeLabelCount(object, studyListForUser);
 }
コード例 #22
0
 public List<BiospecimenUidPadChar> getBiospecimenUidPadChars() {
   return iLimsAdminDao.getBiospecimenUidPadChars();
 }
コード例 #23
0
 public long getBiospecimenUidTemplateCount(BiospecimenUidTemplate modelObject) {
   return iLimsAdminDao.getBiospecimenUidTemplateCount(modelObject);
 }
コード例 #24
0
 public void createBarcodeLabelData(BarcodeLabelData barcodeLabelData) {
   iLimsAdminDao.createBarcodeLabelData(barcodeLabelData);
 }