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