Created
March 14, 2014 00:42
-
-
Save renatomattos2912/9540129 to your computer and use it in GitHub Desktop.
Sugestão de correção para o livro play framework da casa do codigo
This file contains 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
// VERSAO DO LIVRO | |
@Entity | |
public class Diretor extends Model{ | |
private static final long serialVersionUID = 1L; | |
@Id | |
public Long id; | |
@Constraints.Required | |
public String nome; | |
} | |
// SUGESTAO DE CORRECAO COM O FINDER ADICIONADO | |
@Entity | |
public class Diretor extends Model{ | |
private static final long serialVersionUID = 1L; | |
@Id | |
public Long id; | |
@Constraints.Required | |
public String nome; | |
// Finder | |
public static Finder<Long,Diretor> find = new Finder<Long, Diretor>( | |
Long.class, Diretor.class | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Obrigado Renato, na verdade está declarado no fonte, mas não foi para o livro, mandei a errata para correção.