/******************************************************************************* * Copyright (c) 1998, 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/16/2009-2.0 Guy Pelletier * - 277039: JPA 2.0 Cache Usage Settings ******************************************************************************/ package org.eclipse.persistence.testing.models.jpa.cacheable; import static javax.persistence.GenerationType.TABLE; import java.util.ArrayList; import java.util.List; import javax.persistence.Cacheable; import javax.persistence.CascadeType; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.JoinTable; import javax.persistence.OneToMany; import javax.persistence.OrderColumn; import javax.persistence.OneToOne; @Entity(name="JPA_CACHEABLE_FALSE") @Cacheable(false) public class CacheableFalseEntity { protected int id; protected CacheableProtectedEntity protectedEntity; List<CacheableFalseDetail> details = new ArrayList<CacheableFalseDetail>(); List<CacheableFalseDetailWithBackPointer> detailsBackPointer; public CacheableFalseEntity() {} @Id @GeneratedValue(strategy=TABLE, generator="CACHEABLE_TABLE_GENERATOR") public int getId() { return id; } public void setId(int id) { this.id = id; } @OneToMany(cascade = {CascadeType.ALL}) @JoinTable(name = "JPA_CACHEABLE_FALSE_TO_DETAIL", joinColumns=@JoinColumn(name="ENTITY_ID"), inverseJoinColumns=@JoinColumn(name="DETAIL_ID") ) @OrderColumn(name = "IND") public List<CacheableFalseDetail> getDetails() { return details; } public void setDetails(List<CacheableFalseDetail> details) { this.details = details; } /** * @return the protectedEntity */ @OneToOne @JoinColumn(name="PROTECTED_FK") public CacheableProtectedEntity getProtectedEntity() { return protectedEntity; } /** * @param protectedEntity the protectedEntity to set */ public void setProtectedEntity(CacheableProtectedEntity protectedEntity) { this.protectedEntity = protectedEntity; } @OneToMany(cascade = {CascadeType.ALL}, mappedBy="entity") public List<CacheableFalseDetailWithBackPointer> getDetailsBackPointer() { return detailsBackPointer; } public void setDetailsBackPointer( List<CacheableFalseDetailWithBackPointer> detailsBackPointer) { this.detailsBackPointer = detailsBackPointer; } }