View Javadoc

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  public class DocumentHeaderDaoJpa implements DocumentHeaderDao {
30  	
31      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          LOG.debug("Method getDocumentHeaderBaseClass() returning class " + DocumentHeader.class.getName());
41          return DocumentHeader.class;
42      }
43  	
44      /**
45       * @see org.kuali.dao.DocumentHeaderDao#getByDocumentHeaderId(java.lang.Long)
46       */
47      public DocumentHeader getByDocumentHeaderId(String id) {
48  		Criteria criteria = new Criteria(DocumentHeader.class.getName());
49  		criteria.eq("FDOC_NBR", id);		
50  		return (DocumentHeader) new QueryByCriteria(entityManager, criteria).toQuery().getSingleResult();
51      }
52  
53      /**
54       * @return the entityManager
55       */
56      public EntityManager getEntityManager() {
57          return this.entityManager;
58      }
59  
60      /**
61       * @param entityManager the entityManager to set
62       */
63      public void setEntityManager(EntityManager entityManager) {
64          this.entityManager = entityManager;
65      }
66  
67  }