1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
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 | |
|
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 | |
|
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 | |
|
65 | |
|
66 | |
|
67 | |
|
68 | |
|
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 | |
|
87 | |
|
88 | |
|
89 | |
|
90 | |
|
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 | |
|
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 | |
|
111 | |
|
112 | |
|
113 | |
|
114 | |
@Override |
115 | |
public BusinessObjectDao getBusinessObjectDao() { |
116 | 0 | return businessObjectDao; |
117 | |
} |
118 | |
|
119 | |
|
120 | |
|
121 | |
|
122 | |
|
123 | |
public void setBusinessObjectDao(BusinessObjectDao businessObjectDao) { |
124 | 0 | this.businessObjectDao = businessObjectDao; |
125 | 0 | } |
126 | |
|
127 | |
|
128 | |
|
129 | |
|
130 | |
@Override |
131 | |
public DocumentAdHocService getDocumentAdHocService() { |
132 | 0 | return this.documentAdHocService; |
133 | |
} |
134 | |
|
135 | |
|
136 | |
|
137 | |
|
138 | |
|
139 | |
public void setDocumentAdHocService(DocumentAdHocService dahs) { |
140 | 0 | this.documentAdHocService = dahs; |
141 | 0 | } |
142 | |
} |