1 /*
2 * Copyright 2006 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.ole.gl.dataaccess.impl;
17
18 import java.util.List;
19
20 import org.apache.ojb.broker.query.Criteria;
21 import org.apache.ojb.broker.query.QueryByCriteria;
22 import org.apache.ojb.broker.query.QueryFactory;
23 import org.kuali.ole.gl.businessobject.CorrectionChange;
24 import org.kuali.ole.gl.dataaccess.CorrectionChangeDao;
25 import org.kuali.ole.sys.OLEPropertyConstants;
26 import org.kuali.rice.core.framework.persistence.ojb.dao.PlatformAwareDaoBaseOjb;
27
28 /**
29 * The OJB implementation of the CorrectionChangeDao
30 */
31 public class CorrectionChangeDaoOjb extends PlatformAwareDaoBaseOjb implements CorrectionChangeDao {
32 private static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(CorrectionChangeDaoOjb.class);
33
34 /**
35 * Delete a CorrectionChange from the database
36 *
37 * @param spec the CorrectionChange to delete
38 * @see org.kuali.ole.gl.dataaccess.CorrectionChangeDao#delete(org.kuali.ole.gl.businessobject.CorrectionChange)
39 */
40 public void delete(CorrectionChange spec) {
41 LOG.debug("delete() started");
42
43 getPersistenceBrokerTemplate().delete(spec);
44 }
45
46 /**
47 * Query the database to find qualifying CorrectionChange records
48 *
49 * @param documentHeaderId the document number of a GLCP document
50 * @param correctionGroupLineNumber the line number of the group within the GLCP document to find correction chagnes for
51 * @return a List of correction changes
52 * @see org.kuali.ole.gl.dataaccess.CorrectionChangeDao#findByDocumentHeaderIdAndCorrectionGroupNumber(java.lang.String,
53 * java.lang.Integer)
54 */
55 public List findByDocumentHeaderIdAndCorrectionGroupNumber(String documentNumber, Integer correctionGroupLineNumber) {
56 LOG.debug("findByDocumentHeaderIdAndCorrectionGroupNumber() started");
57
58 Criteria criteria = new Criteria();
59 criteria.addEqualTo(OLEPropertyConstants.DOCUMENT_NUMBER, documentNumber);
60 criteria.addEqualTo("correctionChangeGroupLineNumber", correctionGroupLineNumber);
61
62 QueryByCriteria query = QueryFactory.newQuery(CorrectionChange.class, criteria);
63
64 return (List) getPersistenceBrokerTemplate().getCollectionByQuery(query);
65 }
66
67 }