blob: 35110145cce5b4cb13fa184539f1fefcedd0e11b [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.aggregate;
import java.io.Serializable;
import org.eclipse.persistence.tools.schemaframework.*;
public class EvaluationClient extends Client implements Serializable {
public Period evaluationPeriod;
public static Client example1() {
EvaluationClient example = new EvaluationClient();
example.setName("Will Smith");
example.setAddressDescription(AddressDescription.example1());
example.setEvaluationPeriod(Period.example4());
return example;
}
public static Client example2() {
EvaluationClient example = new EvaluationClient();
example.setName("Jimmy Ray");
example.setAddressDescription(AddressDescription.example2());
example.setEvaluationPeriod(Period.example5());
return example;
}
public static Client example3() {
EvaluationClient example = new EvaluationClient();
example.setName("Richard Garner");
example.setAddressDescription(AddressDescription.example3());
example.setEvaluationPeriod(Period.example6());
return example;
}
public void setEvaluationPeriod(Period aPeriod) {
evaluationPeriod = aPeriod;
}
/**
* Return a platform independant definition of the database table.
*/
public static TableDefinition tableDefinition() {
TableDefinition definition = new TableDefinition();
definition.setName("AGG_ECNT");
definition.addPrimaryKeyField("CL_ID", java.math.BigDecimal.class, 15);
definition.addField("EV_SDATE", java.sql.Date.class);
definition.addField("EV_EDATE", java.sql.Date.class);
return definition;
}
}