/******************************************************************************* * 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: * 06/02/2009-2.0 Guy Pelletier * - 278768: JPA 2.0 Association Override Join Table * 02/18/2010-2.0.2 Guy Pelletier * - 294803: @Column(updatable=false) has no effect on @Basic mappings ******************************************************************************/ package org.eclipse.persistence.testing.models.jpa.xml.inherited; import javax.persistence.Embeddable; @Embeddable public class ServiceTime { private String startDate; private String endDate; public ServiceTime() {} public String getEndDate() { return endDate; } public String getStartDate() { return startDate; } public void setEndDate(String endDate) { this.endDate = endDate; } public void setStartDate(String endDate) { this.startDate = endDate; } public String toString() { return "ServiceTime: " + "[" + startDate + "] - [" + endDate + "]"; } }