blob: 46218d75a7ca534449d7f3794110058a216937eb [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.jdo.tck.pc.companyAnnotatedJPA;
import javax.persistence.*;
import java.util.Date;
import org.apache.jdo.tck.pc.company.IAddress;
import org.apache.jdo.tck.pc.company.IFullTimeEmployee;
import org.apache.jdo.tck.util.EqualityHelper;
/**
* This class represents a full-time employee.
*/
@Entity
public class JPAAppFullTimeEmployee extends JPAAppEmployee
implements IFullTimeEmployee {
@Column(name="SALARY")
private double salary;
/** This is the JDO-required no-args constructor. The TCK relies on
* this constructor for testing PersistenceManager.newInstance(PCClass).
*/
public JPAAppFullTimeEmployee() {}
/**
* Construct a full-time employee.
* @param personid The person identifier.
* @param first The person's first name.
* @param last The person's last name.
* @param middle The person's middle name.
* @param born The person's birthdate.
* @param hired The date that the person was hired.
* @param sal The salary of the full-time employee.
*/
public JPAAppFullTimeEmployee(long personid, String first, String last,
String middle, Date born,
Date hired, double sal) {
super(personid, first, last, middle, born, hired);
salary = sal;
}
/**
* Construct a full-time employee.
* @param personid The person identifier.
* @param first The person's first name.
* @param last The person's last name.
* @param middle The person's middle name.
* @param born The person's birthdate.
* @param addr The person's address.
* @param hired The date that the person was hired.
* @param sal The salary of the full-time employee.
*/
public JPAAppFullTimeEmployee(long personid, String first, String last,
String middle, Date born, IAddress addr,
Date hired, double sal) {
super(personid, first, last, middle, born, (JPAAppAddress)addr, hired);
salary = sal;
}
/**
* Get the salary of the full time employee.
* @return The salary of the full time employee.
*/
public double getSalary() {
return salary;
}
/**
* Set the salary for the full-time employee.
* @param salary The salary to set for the full-time employee.
*/
public void setSalary(double salary) {
this.salary = salary;
}
/**
* Return a String representation of a <code>JPAAppFullTimeEmployee</code> object.
*
*
* @return a String representation of a <code>JPAAppFullTimeEmployee</code> object.
*/
public String toString() {
return "JPAAppFullTimeEmployee(" + getFieldRepr() + ")";
}
/**
* Returns a String representation of the non-relationship fields.
* @return a String representation of the non-relationship fields.
*/
public String getFieldRepr() {
StringBuffer rc = new StringBuffer();
rc.append(super.getFieldRepr());
rc.append(", $").append(salary);
return rc.toString();
}
/**
*
* Returns <code>true</code> if all the fields of this instance are
* deep equal to the coresponding fields of the specified
* JPAAppFullTimeEmployee.
*
*
* @param other the object with which to compare.
* @param helper EqualityHelper to keep track of instances that have
* already been processed.
* @return <code>true</code> if all the fields are deep equal;
* <code>false</code> otherwise.
* @throws ClassCastException if the specified instances' type prevents
* it from being compared to this instance.
*/
public boolean deepCompareFields(Object other,
EqualityHelper helper) {
JPAAppFullTimeEmployee otherEmp = (JPAAppFullTimeEmployee)other;
String where = "JPAAppFullTimeEmployee<" + getPersonid() + ">";
return super.deepCompareFields(otherEmp, helper) &
helper.closeEnough(salary, otherEmp.getSalary(), where + ".salary");
}
}