Rev 218 | Rev 227 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 218 | Rev 226 | ||
|---|---|---|---|
| Line 4... | Line 4... | ||
| 4 | 4 | ||
| - | 5 | private Long sequencial; |
|
| 5 | private String nomeDaPessoa; |
6 | private String nomeDaPessoa; |
| 6 | private String nome; |
7 | private String nome; |
| 7 | private String login; |
8 | private String login; |
| 8 | private String senha; |
9 | private String senha; |
| 9 | 10 | ||
| 10 | private String novaSenha; |
11 | private String novaSenha; |
| 11 | 12 | ||
| 12 | public UsuarioDTO() {} |
13 | public UsuarioDTO() {} |
| 13 | 14 | ||
| 14 | public UsuarioDTO(String login, String nome) { |
- | |
| - | 15 | public UsuarioDTO(Long sequencial, String login, String nome) { |
|
| 15 | super(); |
16 | super(); |
| - | 17 | this.sequencial = sequencial; |
|
| 16 | this.login = login; |
18 | this.login = login; |
| 17 | this.nome = nome; |
19 | this.nome = nome; |
| 18 | }
|
20 | }
|
| 19 | /*
|
21 | /*
|
| 20 | public UsuarioDTO(String nome, String senha) {
|
22 | public UsuarioDTO(String nome, String senha) {
|
| 21 | super();
|
23 | super();
|
| 22 | this.nome = nome;
|
24 | this.nome = nome;
|
| 23 | this.senha = senha;
|
25 | this.senha = senha;
|
| 24 | }
|
26 | }
|
| 25 | */
|
27 | */
|
| - | 28 | public Long getSequencial() { |
|
| - | 29 | return sequencial; |
|
| - | 30 | }
|
|
| - | 31 | public void setSequencial(Long sequencial) { |
|
| - | 32 | this.sequencial = sequencial; |
|
| - | 33 | }
|
|
| - | 34 | ||
| 26 | public String getNomeDaPessoa() { |
35 | public String getNomeDaPessoa() { |
| 27 | return nomeDaPessoa; |
36 | return nomeDaPessoa; |
| 28 | }
|
37 | }
|
| 29 | public void setNomeDaPessoa(String nomeDaPessoa) { |
38 | public void setNomeDaPessoa(String nomeDaPessoa) { |
| 30 | this.nomeDaPessoa = nomeDaPessoa; |
39 | this.nomeDaPessoa = nomeDaPessoa; |