blob: 0bb59d89680728f3262fb3c2405dff1e51d58776 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 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:
* gonural - initial
******************************************************************************/
package org.eclipse.persistence.jpars.test.model.employee;
import java.util.Calendar;
import javax.persistence.Column;
import javax.persistence.Embeddable;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
@Embeddable
public class Certification {
@Column(name = "NAME")
private String name;
@Temporal(TemporalType.DATE)
@Column(name = "ISSUE_DATE")
private Calendar issueDate;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Calendar getIssueDate() {
return issueDate;
}
public void setIssueDate(Calendar issueDate) {
this.issueDate = issueDate;
}
}