Rev 106 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 106 | Rev 195 | ||
|---|---|---|---|
| Line 3... | Line 3... | ||
| 3 | import java.io.Serializable; |
3 | import java.io.Serializable; |
| 4 | 4 | ||
| 5 | import javax.persistence.Column; |
5 | import javax.persistence.Column; |
| 6 | import javax.persistence.Entity; |
6 | import javax.persistence.Entity; |
| 7 | import javax.persistence.Id; |
7 | import javax.persistence.Id; |
| 8 | import javax.persistence.SequenceGenerator; |
- | |
| 9 | import javax.persistence.Table; |
8 | import javax.persistence.Table; |
| 10 | import javax.validation.constraints.NotNull; |
9 | import javax.validation.constraints.NotNull; |
| 11 | import javax.validation.constraints.Size; |
10 | import javax.validation.constraints.Size; |
| 12 | 11 | ||
| 13 | import org.hibernate.validator.constraints.NotEmpty; |
12 | import org.hibernate.validator.constraints.NotEmpty; |
| 14 | 13 | ||
| 15 | import br.edu.cesmac.core.interfaces.Alterar; |
- | |
| 16 | import br.edu.cesmac.core.interfaces.Cadastrar; |
- | |
| 17 | import br.edu.cesmac.core.util.StringUtil; |
- | |
| - | 14 | import br.com.ec.core.interfaces.Alterar; |
|
| - | 15 | import br.com.ec.core.interfaces.Cadastrar; |
|
| - | 16 | import br.com.ec.core.util.StringUtil; |
|
| 18 | 17 | ||
| 19 | @Entity |
18 | @Entity |
| 20 | @Table(name="sec_parametro", schema="sc_sec") |
19 | @Table(name="sec_parametro", schema="sc_sec") |
| 21 | public class Parametro implements Serializable { |
20 | public class Parametro implements Serializable { |
| 22 | 21 | ||