com.medigy.service.impl.insurance.InsurancePolicyFacadeImpl.java Source code

Java tutorial

Introduction

Here is the source code for com.medigy.service.impl.insurance.InsurancePolicyFacadeImpl.java

Source

/*
 * Copyright (c) 2000-2003 Netspective Communications LLC. All rights reserved.
 *
 * Netspective Communications LLC ("Netspective") permits redistribution, modification and use of this file in source
 * and binary form ("The Software") under the Netspective Source License ("NSL" or "The License"). The following
 * conditions are provided as a summary of the NSL but the NSL remains the canonical license and must be accepted
 * before using The Software. Any use of The Software indicates agreement with the NSL.
 *
 * 1. Each copy or derived work of The Software must preserve the copyright notice and this notice unmodified.
 *
 * 2. Redistribution of The Software is allowed in object code form only (as Java .class files or a .jar file
 *    containing the .class files) and only as part of an application that uses The Software as part of its primary
 *    functionality. No distribution of the package is allowed as part of a software development kit, other library,
 *    or development tool without written consent of Netspective. Any modified form of The Software is bound by these
 *    same restrictions.
 *
 * 3. Redistributions of The Software in any form must include an unmodified copy of The License, normally in a plain
 *    ASCII text file unless otherwise agreed to, in writing, by Netspective.
 *
 * 4. The names "Netspective", "Axiom", "Commons", "Junxion", and "Sparx" are trademarks of Netspective and may not be
 *    used to endorse products derived from The Software without without written consent of Netspective. "Netspective",
 *    "Axiom", "Commons", "Junxion", and "Sparx" may not appear in the names of products derived from The Software
 *    without written consent of Netspective.
 *
 * 5. Please attribute functionality where possible. We suggest using the "powered by Netspective" button or creating
 *    a "powered by Netspective(tm)" link to http://www.netspective.com for each application using The Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT A WARRANTY OF ANY KIND. ALL EXPRESS OR IMPLIED REPRESENTATIONS AND
 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT,
 * ARE HEREBY DISCLAIMED.
 *
 * NETSPECTIVE AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE OR ANY THIRD PARTY AS A
 * RESULT OF USING OR DISTRIBUTING THE SOFTWARE. IN NO EVENT WILL NETSPECTIVE OR ITS LICENSORS BE LIABLE FOR ANY LOST
 * REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
 * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN
 * IF HE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
 *
 */
package com.medigy.service.impl.insurance;

import com.medigy.persist.model.insurance.Coverage;
import com.medigy.persist.model.insurance.CoverageLevel;
import com.medigy.persist.model.insurance.CoverageLevelBasis;
import com.medigy.persist.model.insurance.InsurancePlan;
import com.medigy.persist.model.insurance.InsurancePolicy;
import com.medigy.persist.model.insurance.InsurancePolicyCoverageLevel;
import com.medigy.persist.model.insurance.InsuranceProduct;
import com.medigy.persist.model.person.Person;
import com.medigy.persist.reference.custom.insurance.CoverageLevelType;
import com.medigy.persist.reference.custom.insurance.InsurancePolicyType;
import com.medigy.persist.reference.custom.invoice.BillSequenceType;
import com.medigy.service.insurance.InsurancePolicyFacade;
import com.medigy.service.util.AbstractFacade;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.hibernate.Criteria;
import org.hibernate.SessionFactory;
import org.hibernate.Query;
import org.hibernate.criterion.Restrictions;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;

public class InsurancePolicyFacadeImpl extends AbstractFacade implements InsurancePolicyFacade {
    private static Log log = LogFactory.getLog(InsurancePolicyFacadeImpl.class);

    public InsurancePolicyFacadeImpl(final SessionFactory sessionFactory) {
        super(sessionFactory);
    }

    public InsurancePolicy createInsurancePolicy(final Person insuredPerson, final Person contractHolder,
            final InsurancePlan plan, final String policyNumber, final String groupNumber,
            final InsurancePolicyType type, final Date startDate, final Date endDate) {
        // create the new policy
        final InsurancePolicy insPolicy = new InsurancePolicy();
        insPolicy.setGroupNumber(groupNumber);
        insPolicy.setPolicyNumber(policyNumber);
        insPolicy.setInsuredPerson(insuredPerson);
        insPolicy.setContractHolderPerson(contractHolder);
        insPolicy.setFromDate(startDate);
        insPolicy.setThroughDate(endDate);
        insPolicy.setType(type);
        plan.addInsurancePolicy(insPolicy);
        getSession().save(insPolicy);
        return insPolicy;
    }

    /**
     * Adds a insurance coverage level for an existing insurance policy.
     * @param insPolicy
     * @param type
     * @param indDeductible
     */
    public void addInsurancePolicyCoverageLevel(final InsurancePolicy insPolicy, final CoverageLevelType type,
            final Float indDeductible) {
        InsurancePolicyCoverageLevel indDeductibleCoverageLevel = insPolicy.getCoverageLevelRelationship(type);
        final CoverageLevel existingCoverageLevel = indDeductibleCoverageLevel.getCoverageLevel();
        if (!existingCoverageLevel.getValue().equals(indDeductible)) {
            // if the patient supplied value equals the plan's then no need to do anything.
            CoverageLevel newLevel = new CoverageLevel();
            newLevel.setType(type);
            newLevel.setValue(indDeductible);

            for (CoverageLevelBasis basis : existingCoverageLevel.getCoverageLevelBasises()) {
                newLevel.addCoverageLevelBasis(basis.getType());
            }
            final Coverage coverage = existingCoverageLevel.getCoverage();
            coverage.addCoverageLevel(newLevel);
            newLevel.addInsurancePolicyCoverageLevel(indDeductibleCoverageLevel);
            indDeductibleCoverageLevel.setCoverageLevel(newLevel);

            getSession().save(newLevel);
        }
    }

    public List<CoverageLevel> listCoverageLevels(final InsuranceProduct product) {

        return null;
    }

    public List listInsurancePlans(final InsuranceProduct product) {
        Criteria criteria = getSession().createCriteria(InsurancePlan.class);
        criteria.createCriteria("insuranceProduct")
                .add(Restrictions.eq("insuranceProductId", product.getInsuranceProductId()));
        return criteria.list();
    }

    public List<InsurancePolicy> listInsurancePolicies(final Serializable personId) {
        List list = getSession()
                .createQuery("from InsurancePolicy insPolicy where insPolicy.insuredPerson.partyId = " + personId)
                .list();
        List<InsurancePolicy> policies = new ArrayList<InsurancePolicy>(list.size());
        ;
        convert(InsurancePolicy.class, list, policies);
        return policies;
    }

    public List<InsuranceProduct> listInsuranceProducts(final Long orgId) {
        //  NOTE: using setSerializable(xxx) returns empty results
        final List list = getSession()
                .createQuery("from InsuranceProduct as insProduct where " + "insProduct.organization.partyId = ?")
                .setLong(0, orgId).list();
        List<InsuranceProduct> products = new ArrayList<InsuranceProduct>(list.size());
        convert(InsuranceProduct.class, list, products);
        return products;
    }

    public InsurancePlan getInsurancePlanById(final Serializable insurancePlanId) {
        return (InsurancePlan) getSession().createCriteria(InsurancePlan.class)
                .add(Restrictions.eq("insurancePlanId", insurancePlanId)).uniqueResult();
    }

    public InsurancePolicy getInsurancePolicy(final Long personId, final BillSequenceType sequenceType) {
        final Query query = getSession()
                .createQuery("from InsurancePolicy policy where policy.insuredPerson.id = ? "
                        + "and policy.billSequenceType.code = ?");

        query.setLong(0, personId);
        query.setString(1, sequenceType.getCode());
        final InsurancePolicy policy = (InsurancePolicy) query.uniqueResult();
        return policy;
    }

    public List<InsurancePolicy> listInsurancePolicies(final Long personId) {
        final Query query = getSession()
                .createQuery("from InsurancePolicy policy where policy.insuredPerson.id = ? ");
        query.setLong(0, personId);
        List list = query.list();
        List<InsurancePolicy> policies = new ArrayList<InsurancePolicy>(list.size());
        convert(InsurancePolicy.class, list, policies);
        return policies;
    }

}