edu.psu.iam.cpr.core.database.tables.PersonGenderTable.java Source code

Java tutorial

Introduction

Here is the source code for edu.psu.iam.cpr.core.database.tables.PersonGenderTable.java

Source

/* SVN FILE: $Id: PersonGenderTable.java 5340 2012-09-27 14:48:52Z jvuccolo $ */
package edu.psu.iam.cpr.core.database.tables;

import java.util.ArrayList;
import java.util.Date;
import java.util.Iterator;
import java.util.List;

import org.hibernate.Query;
import org.hibernate.SQLQuery;
import org.hibernate.Session;
import org.hibernate.type.StandardBasicTypes;

import edu.psu.iam.cpr.core.database.Database;
import edu.psu.iam.cpr.core.database.beans.PersonGender;
import edu.psu.iam.cpr.core.database.types.GenderType;
import edu.psu.iam.cpr.core.error.CprException;
import edu.psu.iam.cpr.core.error.ReturnType;
import edu.psu.iam.cpr.core.service.returns.GenderReturn;
import edu.psu.iam.cpr.core.util.Utility;

/**
 * This class provides an implementation for interfacing with the person gender
 * database table.  This table contains gender information for people within in the
 * CPR.  This class provides methods to add, update and get gender information
 * for persons in the CPR.
 * 
 * Copyright 2012 The Pennsylvania State University
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * @package edu.psu.iam.cpr.core.database.tables
 * @author $Author: jvuccolo $
 * @version $Rev: 5340 $
 * @lastrevision $Date: 2012-09-27 10:48:52 -0400 (Thu, 27 Sep 2012) $
 */
public class PersonGenderTable {

    private static final int GENDER_TYPE = 0;
    private static final int START_DATE = 1;
    private static final int END_DATE = 2;
    private static final int LAST_UPDATE_BY = 3;
    private static final int LAST_UPDATE_ON = 4;
    private static final int CREATED_BY = 5;
    private static final int CREATED_ON = 6;
    private static final int BUFFER_SIZE = 1024;

    /** person Gender bean. */
    private PersonGender personGenderBean;

    /** the gender type enumerated type */
    private GenderType genderType;

    /** boolean flag that indicates whether to return history or not. */
    private boolean returnHistoryFlag;

    /**
     * Constructor.
     */
    public PersonGenderTable() {
        super();
    }

    /**
     * Constructor
     * @param personId contains the person identifier
     * @param genderString contains the gender string.
     * @param updatedBy contains the last updated by.
     * @throws CprException will be thrown if there are any CPR related problems.
     */
    public PersonGenderTable(final long personId, final String genderString, final String updatedBy)
            throws CprException {

        setGenderType(findGenderTypeEnum(genderString));

        final PersonGender bean = new PersonGender();
        setPersonGenderBean(bean);
        final Date d = new Date();

        bean.setPersonId(personId);
        bean.setDataTypeKey(getGenderType().index());

        bean.setStartDate(d);
        bean.setEndDate(null);

        bean.setLastUpdateBy(updatedBy);
        bean.setLastUpdateOn(d);

        bean.setCreatedBy(updatedBy);
        bean.setCreatedOn(d);
    }

    /**
     * @param returnHistoryFlag the returnHistoryFlag to set
     */
    public void setReturnHistoryFlag(boolean returnHistoryFlag) {
        this.returnHistoryFlag = returnHistoryFlag;
    }

    /**
     * @return the returnHistoryFlag
     */
    public boolean isReturnHistoryFlag() {
        return returnHistoryFlag;
    }

    /**
     * @param personGenderBean the personGenderBean to set
     */
    public final void setPersonGenderBean(PersonGender personGenderBean) {
        this.personGenderBean = personGenderBean;
    }

    /**
     * @return the personGenderBean
     */
    public PersonGender getPersonGenderBean() {
        return personGenderBean;
    }

    /**
     * @return the genderType
     */
    public GenderType getGenderType() {
        return genderType;
    }

    /**
     * @param genderType the genderType to set
     */
    public final void setGenderType(final GenderType genderType) {
        this.genderType = genderType;
    }

    /**
     * This routine will accept a gender type string, trim it and attempt to generate an enum.
     * @param genderType contains the gender type.
     * @return will return the gender type enum if successful.
     * @throws CprException will be thrown if there are any CPR problems
     */
    public final GenderType findGenderTypeEnum(final String genderType) throws CprException {
        if (genderType != null) {
            GenderType genderTypeEnum = Utility.getEnumFromString(GenderType.class, genderType);
            if (genderTypeEnum != null) {
                return genderTypeEnum;
            }
        }
        throw new CprException(ReturnType.INVALID_PARAMETERS_EXCEPTION, "Gender Type");
    }

    /**
     * This routine is used to add/update a gender in the CPR database.
     * @param db contains the database connection.
     */
    public void addGender(final Database db) {

        final Session session = db.getSession();
        final PersonGender bean = getPersonGenderBean();

        // Expire the existing gender that is still active.
        final String sqlQuery = "from PersonGender where personId = :person_id AND endDate IS NULL";
        final Query query = session.createQuery(sqlQuery);
        query.setParameter("person_id", bean.getPersonId());
        for (final Iterator<?> it = query.list().iterator(); it.hasNext();) {
            PersonGender dbBean = (PersonGender) it.next();
            dbBean.setEndDate(bean.getLastUpdateOn());
            dbBean.setLastUpdateBy(bean.getLastUpdateBy());
            dbBean.setLastUpdateOn(bean.getLastUpdateOn());
            session.update(dbBean);
            session.flush();
        }

        // Save off the new record.
        session.save(bean);
        session.flush();
    }

    /**
     * This routine is used to obtain the gender for a user.
     * @param db contain the database connection.
     * @param personId contains the person identifier from the central person registry.
     * @return will return an array of GenderReturn objects.
     */
    public GenderReturn[] getGenderForPersonId(final Database db, long personId) {

        final Session session = db.getSession();
        final StringBuilder sb = new StringBuilder(BUFFER_SIZE);
        final List<GenderReturn> results = new ArrayList<GenderReturn>();

        sb.append("SELECT data_type_key, ");
        sb.append("start_date, ");
        sb.append("end_date, ");
        sb.append("last_update_by, ");
        sb.append("last_update_on, ");
        sb.append("created_by, ");
        sb.append("created_on ");
        sb.append("FROM {h-schema}person_gender ");
        sb.append("WHERE person_id = :person_id_in ");

        // If we are not returning all records, we need to just return the active ones.
        if (!isReturnHistoryFlag()) {
            sb.append("AND end_date IS NULL ");
        }
        sb.append("ORDER BY start_date ASC ");

        final SQLQuery query = session.createSQLQuery(sb.toString());
        query.setParameter("person_id_in", personId);
        query.addScalar("data_type_key", StandardBasicTypes.LONG);
        query.addScalar("start_date", StandardBasicTypes.TIMESTAMP);
        query.addScalar("end_date", StandardBasicTypes.TIMESTAMP);
        query.addScalar("last_update_by", StandardBasicTypes.STRING);
        query.addScalar("last_update_on", StandardBasicTypes.TIMESTAMP);
        query.addScalar("created_by", StandardBasicTypes.STRING);
        query.addScalar("created_on", StandardBasicTypes.TIMESTAMP);

        for (final Iterator<?> it = query.list().iterator(); it.hasNext();) {
            Object[] res = (Object[]) it.next();
            results.add(new GenderReturn(GenderType.get((Long) res[GENDER_TYPE]).toString(),
                    Utility.formatDateToISO8601((Date) res[START_DATE]),
                    Utility.formatDateToISO8601((Date) res[END_DATE]), (String) res[LAST_UPDATE_BY],
                    Utility.formatDateToISO8601((Date) res[LAST_UPDATE_ON]), (String) res[CREATED_BY],
                    Utility.formatDateToISO8601((Date) res[CREATED_ON])));
        }

        return results.toArray(new GenderReturn[results.size()]);
    }
}