001/*
002 * Copyright 2006 The Kuali Foundation
003 * 
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 * 
008 * http://www.opensource.org/licenses/ecl2.php
009 * 
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.ole.coa.dataaccess.impl;
017
018import org.apache.ojb.broker.query.Criteria;
019import org.apache.ojb.broker.query.QueryByCriteria;
020import org.apache.ojb.broker.query.QueryFactory;
021import org.kuali.ole.coa.businessobject.A21SubAccount;
022import org.kuali.ole.coa.dataaccess.A21SubAccountDao;
023import org.kuali.rice.core.framework.persistence.ojb.dao.PlatformAwareDaoBaseOjb;
024
025/**
026 * This class provides data access to {@link A21SubAccount} through OJB
027 */
028public class A21SubAccountDaoOjb extends PlatformAwareDaoBaseOjb implements A21SubAccountDao {
029    private static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(A21SubAccountDaoOjb.class);
030
031    public A21SubAccountDaoOjb() {
032        super();
033    }
034
035    /**
036     * @see org.kuali.ole.coa.dataaccess.A21SubAccountDao#getByPrimaryKey(java.lang.String, java.lang.String, java.lang.String)
037     */
038    public A21SubAccount getByPrimaryKey(String chartOfAccountsCode, String accountNumber, String subAccountNumber) {
039        LOG.debug("getByPrimaryKey() started");
040
041        Criteria crit = new Criteria();
042        crit.addEqualTo("chartOfAccountsCode", chartOfAccountsCode);
043        crit.addEqualTo("accountNumber", accountNumber);
044        crit.addEqualTo("subAccountNumber", subAccountNumber);
045
046        QueryByCriteria qbc = QueryFactory.newQuery(A21SubAccount.class, crit);
047        return (A21SubAccount) getPersistenceBrokerTemplate().getObjectByQuery(qbc);
048    }
049}