blob: b6a399c11410f8815e4c983a277ac0aedb8957ef [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.legacy;
import java.math.*;
import java.util.*;
import java.io.*;
public class Shipment implements Serializable {
public Number shipmentNumber;
public String employeeFirstName;
public String employeeLastName;
public String quantityShipped;
public String shipMode;
public Vector orders;
public Employee employee;
public Shipment() {
orders = new Vector();
}
public static Shipment example1(Employee employee) {
Shipment example = new Shipment();
example.employee = employee;
example.employeeFirstName = employee.firstName;
example.employeeLastName = employee.lastName;
example.shipmentNumber = new BigDecimal(1);
example.quantityShipped = "1 ton";
example.shipMode = "Air";
example.orders.addElement(Order.example1(example, employee));
example.orders.addElement(Order.example2(example, employee));
return example;
}
public static Shipment example2(Employee employee) {
Shipment example = new Shipment();
example.employee = employee;
example.employeeFirstName = employee.firstName;
example.employeeLastName = employee.lastName;
example.shipmentNumber = new BigDecimal(2);
example.quantityShipped = "2 ton";
example.shipMode = "Air";
example.orders.addElement(Order.example3(example, employee));
example.orders.addElement(Order.example4(example, employee));
return example;
}
public static Shipment example3(Employee employee) {
Shipment example = new Shipment();
example.employee = employee;
example.employeeFirstName = employee.firstName;
example.employeeLastName = employee.lastName;
example.shipmentNumber = new BigDecimal(3);
example.quantityShipped = "3 ton";
example.shipMode = "Ship";
example.orders.addElement(Order.example5(example, employee));
example.orders.addElement(Order.example6(example, employee));
return example;
}
public static Shipment example4(Employee employee) {
Shipment example = new Shipment();
example.employee = employee;
example.employeeFirstName = employee.firstName;
example.employeeLastName = employee.lastName;
example.shipmentNumber = new BigDecimal(4);
example.quantityShipped = "4 ton";
example.shipMode = "Ship";
example.orders.addElement(Order.example7(example, employee));
example.orders.addElement(Order.example8(example, employee));
return example;
}
}