Coverage Report - org.kuali.rice.kns.dao.impl.DocumentDaoOjb
 
Classes in this File Line Coverage Branch Coverage Complexity
DocumentDaoOjb
0%
0/31
0%
0/8
1.5
 
 1  
 /*
 2  
  * Copyright 2006-2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.rice.kns.dao.impl;
 17  
 
 18  
 import org.apache.log4j.Logger;
 19  
 import org.apache.ojb.broker.query.Criteria;
 20  
 import org.apache.ojb.broker.query.QueryByCriteria;
 21  
 import org.apache.ojb.broker.query.QueryFactory;
 22  
 import org.kuali.rice.kns.dao.BusinessObjectDao;
 23  
 import org.kuali.rice.kns.dao.DocumentDao;
 24  
 import org.kuali.rice.kns.document.Document;
 25  
 import org.kuali.rice.kns.service.DocumentAdHocService;
 26  
 import org.kuali.rice.kns.service.KNSServiceLocatorInternal;
 27  
 import org.kuali.rice.kns.util.KNSPropertyConstants;
 28  
 import org.kuali.rice.kns.util.OjbCollectionAware;
 29  
 import org.springframework.dao.DataAccessException;
 30  
 
 31  
 import java.util.ArrayList;
 32  
 import java.util.List;
 33  
 
 34  
 /**
 35  
  * This class is the OJB implementation of the DocumentDao interface.
 36  
  */
 37  
 public class DocumentDaoOjb extends PlatformAwareDaoBaseOjb implements DocumentDao, OjbCollectionAware{
 38  0
     private static final Logger LOG = Logger.getLogger(DocumentDaoOjb.class);
 39  
     protected BusinessObjectDao businessObjectDao;
 40  
     protected DocumentAdHocService documentAdHocService;
 41  
 
 42  
 
 43  
     public DocumentDaoOjb(BusinessObjectDao businessObjectDao, DocumentAdHocService documentAdHocService) {
 44  0
         super();
 45  0
         this.businessObjectDao = businessObjectDao;
 46  0
         this.documentAdHocService = documentAdHocService;
 47  0
     }
 48  
 
 49  
     /**
 50  
      * @see org.kuali.dao.DocumentDao#save(null)
 51  
      */
 52  
     @Override
 53  
     public <T extends Document> T save(T document) throws DataAccessException {
 54  0
             if ( LOG.isDebugEnabled() ) {
 55  0
                     LOG.debug( "About to store document: " + document, new Throwable() );
 56  
             }
 57  0
         Document retrievedDocument = findByDocumentHeaderId(document.getClass(),document.getDocumentNumber());
 58  0
         KNSServiceLocatorInternal.getOjbCollectionHelper().processCollections(this, document, retrievedDocument);
 59  0
         this.getPersistenceBrokerTemplate().store(document);
 60  0
         return document;
 61  
     }
 62  
 
 63  
     /**
 64  
      * Retrieve a Document of a specific type with a given document header ID.
 65  
      *
 66  
      * @param clazz
 67  
      * @param id
 68  
      * @return Document with given id
 69  
      */
 70  
     @Override
 71  
     public <T extends Document> T findByDocumentHeaderId(Class<T> clazz, String id) {
 72  0
         List<String> idList = new ArrayList<String>();
 73  0
         idList.add(id);
 74  
 
 75  0
         List<T> documentList = findByDocumentHeaderIds(clazz, idList);
 76  
 
 77  0
         T document = null;
 78  0
         if ((null != documentList) && (documentList.size() > 0)) {
 79  0
             document = documentList.get(0);
 80  
         }
 81  
 
 82  0
         return document;
 83  
     }
 84  
 
 85  
     /**
 86  
      * Retrieve a List of Document instances with the given ids
 87  
      *
 88  
      * @param clazz
 89  
      * @param idList
 90  
      * @return List
 91  
      */
 92  
     @Override
 93  
     public <T extends Document> List<T> findByDocumentHeaderIds(Class<T> clazz, List<String> idList) {
 94  0
         Criteria criteria = new Criteria();
 95  0
         criteria.addIn(KNSPropertyConstants.DOCUMENT_NUMBER, idList);
 96  
 
 97  0
         QueryByCriteria query = QueryFactory.newQuery(clazz, criteria);
 98  
         
 99  
         // this cast is correct because OJB produces a collection which contains elements of the class defined on the query
 100  
         @SuppressWarnings("unchecked")
 101  0
         List<T> tempList = new ArrayList<T>(this.getPersistenceBrokerTemplate().getCollectionByQuery(query));
 102  
         
 103  0
         for (T doc : tempList) {
 104  0
                 documentAdHocService.addAdHocs(doc);
 105  
         }
 106  0
         return tempList;
 107  
     }
 108  
 
 109  
     /**
 110  
      * Returns the {@link BusinessObjectDao}
 111  
      * @see org.kuali.rice.kns.dao.DocumentDao#getBusinessObjectDao()
 112  
      * @return the {@link BusinessObjectDao}
 113  
      */
 114  
     @Override
 115  
     public BusinessObjectDao getBusinessObjectDao() {
 116  0
         return businessObjectDao;
 117  
     }
 118  
 
 119  
     /**
 120  
      * Sets the {@link BusinessObjectDao}
 121  
      * @param businessObjectDao ths {@link BusinessObjectDao}
 122  
      */
 123  
     public void setBusinessObjectDao(BusinessObjectDao businessObjectDao) {
 124  0
         this.businessObjectDao = businessObjectDao;
 125  0
     }
 126  
 
 127  
     /**
 128  
          * @return the documentAdHocService
 129  
          */
 130  
     @Override
 131  
         public DocumentAdHocService getDocumentAdHocService() {
 132  0
                 return this.documentAdHocService;
 133  
         }
 134  
 
 135  
     /**
 136  
      * Setter for injecting the DocumentAdHocService
 137  
      * @param dahs
 138  
      */
 139  
     public void setDocumentAdHocService(DocumentAdHocService dahs) {
 140  0
             this.documentAdHocService = dahs;
 141  0
     }
 142  
 }