Coverage Report - org.kuali.rice.krad.dao.impl.DocumentHeaderDaoJpa
 
Classes in this File Line Coverage Branch Coverage Complexity
DocumentHeaderDaoJpa
0%
0/10
N/A
1
 
 1  
 /**
 2  
  * Copyright 2005-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.krad.dao.impl;
 17  
 
 18  
 import javax.persistence.EntityManager;
 19  
 import javax.persistence.PersistenceContext;
 20  
 
 21  
 import org.kuali.rice.core.framework.persistence.jpa.criteria.Criteria;
 22  
 import org.kuali.rice.core.framework.persistence.jpa.criteria.QueryByCriteria;
 23  
 import org.kuali.rice.krad.bo.DocumentHeader;
 24  
 import org.kuali.rice.krad.dao.DocumentHeaderDao;
 25  
 
 26  
 /**
 27  
  * This class is the JPA implementation of the DocumentHeaderDao interface.
 28  
  */
 29  0
 public class DocumentHeaderDaoJpa implements DocumentHeaderDao {
 30  
         
 31  0
     private static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(DocumentHeaderDaoJpa.class);
 32  
 
 33  
         @PersistenceContext
 34  
         private EntityManager entityManager;
 35  
         
 36  
         /**
 37  
      * @see org.kuali.rice.krad.dao.DocumentHeaderDao#getDocumentHeaderBaseClass()
 38  
      */
 39  
     public Class getDocumentHeaderBaseClass() {
 40  0
         LOG.debug("Method getDocumentHeaderBaseClass() returning class " + DocumentHeader.class.getName());
 41  0
         return DocumentHeader.class;
 42  
     }
 43  
         
 44  
     /**
 45  
      * @see org.kuali.dao.DocumentHeaderDao#getByDocumentHeaderId(java.lang.Long)
 46  
      */
 47  
     public DocumentHeader getByDocumentHeaderId(String id) {
 48  0
                 Criteria criteria = new Criteria(DocumentHeader.class.getName());
 49  0
                 criteria.eq("FDOC_NBR", id);                
 50  0
                 return (DocumentHeader) new QueryByCriteria(entityManager, criteria).toQuery().getSingleResult();
 51  
     }
 52  
 
 53  
     /**
 54  
      * @return the entityManager
 55  
      */
 56  
     public EntityManager getEntityManager() {
 57  0
         return this.entityManager;
 58  
     }
 59  
 
 60  
     /**
 61  
      * @param entityManager the entityManager to set
 62  
      */
 63  
     public void setEntityManager(EntityManager entityManager) {
 64  0
         this.entityManager = entityManager;
 65  0
     }
 66  
 
 67  
 }