blob: b0cac474d0905f18b8add8d6c4b82b897efb5816 [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;
import java.sql.Date;
import org.eclipse.persistence.internal.helper.Helper;
/**
* <p><b>Purpose</b>: Represents an insurance house 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 HousePolicy extends Policy {
private Date dateOfConstruction;
/**
* Return an example claim instance.
*/
public static HousePolicy example1() {
HousePolicy housePolicy = new HousePolicy();
housePolicy.setPolicyNumber(101);
housePolicy.setDescription("Nice house.");
housePolicy.setDateOfConstruction(Helper.dateFromString("1997/06/10"));
housePolicy.setMaxCoverage(50000);
housePolicy.setDescription("Fire and flood coverage");
housePolicy.addClaim(HouseClaim.example1());
housePolicy.addClaim(HouseClaim.example2());
return housePolicy;
}
/**
* Return an example claim instance.
*/
public static HousePolicy example2() {
HousePolicy housePolicy = new HousePolicy();
housePolicy.setPolicyNumber(102);
housePolicy.setDescription("Nice house.");
housePolicy.setDateOfConstruction(Helper.dateFromString("1997/06/12"));
housePolicy.setMaxCoverage(11111);
housePolicy.setDescription("Theft Coverage");
housePolicy.addClaim(HouseClaim.example3());
return housePolicy;
}
/**
* Return a house policy with null values for its Ref and nested table fields.
* For bug 2730536
*/
public static HousePolicy example3() {
HousePolicy housePolicy = new HousePolicy();
housePolicy.setPolicyNumber(783);
housePolicy.setDescription("vacant home.");
housePolicy.setDateOfConstruction(Helper.dateFromString("1997/06/10"));
housePolicy.setMaxCoverage(50000);
housePolicy.setDescription("Fire and flood coverage");
return housePolicy;
}
/**
* date on which the house construction started
*/
public Date getDateOfConstruction() {
return dateOfConstruction;
}
/**
* date on which the house construction started.
*/
public void setDateOfConstruction(Date dateOfConstruction) {
this.dateOfConstruction = dateOfConstruction;
}
}