/******************************************************************************* * Copyright (c) 2011, 2015 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 static javax.persistence.TemporalType.TIMESTAMP; import java.util.Calendar; import javax.persistence.Column; import javax.persistence.Embeddable; import javax.persistence.Temporal; @Embeddable public class Certification { @Column(name = "NAME") private String name; @Temporal(TIMESTAMP) @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; } @Override public String toString() { return "name=" + name + ", issueDate=" + issueDate; } }