Created
December 22, 2014 21:02
-
-
Save davidpaniz/c099a10d121a85ef7133 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Entity | |
public class Comentario { | |
@Id | |
@GeneratedValue | |
private long id; | |
private String comentario; | |
@Any(metaColumn = @Column(name = "detail_type")) | |
@AnyMetaDef(idType = "long", metaType = "string", metaValues = { | |
@MetaValue(value = "RESTAURANTE", targetEntity = Restaurante.class), | |
@MetaValue(value = "PRATO", targetEntity = Prato.class) }) | |
@JoinColumn(name = "detail_id") | |
private Comentavel comentavel; | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment