blob: eae2ffe561c4035a52eee32f7a6bd7f2519e6a60 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2013 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 v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Oracle - initial API and implementation from Oracle TopLink
******************************************************************************/
package org.eclipse.persistence.testing.models.interfaces;
import org.eclipse.persistence.tools.schemaframework.*;
public class Secretary extends AdministrativeJob {
public String department;
public static Secretary example1() {
Secretary example = new Secretary();
example.setDepartment("Finance");
example.setSalary(new Float(33500.00));
example.setMinimumSalary(new Float(31000.00));
return example;
}
public static Secretary example2() {
Secretary example = new Secretary();
example.setDepartment("Employment");
example.setSalary(new Float(33500.00));
example.setMinimumSalary(new Float(31000.00));
return example;
}
public static Secretary example3() {
Secretary example = new Secretary();
example.setDepartment("Public Relations");
example.setSalary(new Float(35000.00));
example.setMinimumSalary(new Float(31000.00));
return example;
}
public String getDepartment() {
return department;
}
public static TableDefinition secretaryTable() {
TableDefinition table = new TableDefinition();
table.setName("SECRTRY");
table.addField("CODE", java.math.BigDecimal.class, 15);
table.addField("SALARY", Float.class);
table.addField("DEPT", String.class, 30);
return table;
}
public void setDepartment(String department) {
this.department = department;
}
public String toString() {
return new String("Secretary: " + getJobCode());
}
}