blob: a5fed0e61d2a2df2c8eabfe737a27cb56e752825 [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.models.insurance;
/**
* <p><b>Purpose</b>: Represents an insurance health policy.
* <p><b>Description</b>: Held in a 1-M from PolicyHolder and has a 1-M to Claim.
* @see Claim
* @since TOPLink/Java 1.0
*/
public class HealthPolicy extends Policy {
private float coverageRate;
/**
* Return an example claim instance.
*/
public static HealthPolicy example1() {
HealthPolicy healthPolicy = new HealthPolicy();
healthPolicy.setPolicyNumber(200);
healthPolicy.setDescription("Nice body.");
healthPolicy.setCoverageRate((float)1.5);
healthPolicy.setMaxCoverage(50000);
healthPolicy.addClaim(HealthClaim.example1());
healthPolicy.addClaim(HealthClaim.example2());
return healthPolicy;
}
/**
* The rate of coverage under the policy
*/
public float getCoverageRate() {
return coverageRate;
}
/**
* The rate of coverage under the policy
*/
public void setCoverageRate(float coverageRate) {
this.coverageRate = coverageRate;
}
}