/* * Hibernate OGM, Domain model persistence for NoSQL datastores * * License: GNU Lesser General Public License (LGPL), version 2.1 or later * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.ogm.backendtck.id.sharedpk; import javax.persistence.CascadeType; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.Id; import javax.persistence.OneToOne; import org.hibernate.annotations.GenericGenerator; /** * @author Gunnar Morling */ @Entity public class CoffeeMug { private String id; private int capacity; private Lid lid; @Id @GeneratedValue(generator = "uuid") @GenericGenerator(name = "uuid", strategy = "uuid2") public String getId() { return id; } public void setId(String id) { this.id = id; } public int getCapacity() { return capacity; } public void setCapacity(int capacity) { this.capacity = capacity; } @OneToOne(mappedBy = "mug", cascade = CascadeType.PERSIST) public Lid getLid() { return lid; } public void setLid(Lid lid) { this.lid = lid; } }