haha

Java code posted by me
created at 07 Apr 08:17

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
package sistema_escolar.model;

import java.io.Serializable;
import java.util.List;
import java.util.Objects;
import javax.persistence.*;
import javax.validation.constraints.*;


@Entity
@Table(name = "aluno")
public class Aluno implements Serializable
{
    private static final Long serialVersionUID = 1L;
    
    @Id
    @GeneratedValue
    @Column(name = "aluno_ID")
    private Long id;
    
    @NotNull
    @Size(min = 2, max = 20, message = "O Nome deve ter entre 2 e 20 caracteres!")
    @Column(name = "aluno_NOME")
    private String nome;
    
    @NotNull
    @Size(min = 2, max = 40, message = "O Sobrenome deve ter entre 2 e 40 carac"
            + "teres")
    @Column(name = "aluno_SOBRENOME")
    private String sobrenome;
    
    @OneToOne
    @JoinColumn(name = "endereco_ID_aluno")
    private Endereco endereco;
    
    @ManyToOne
    @JoinColumn(name = "turma_ID_aluno")
    private Turma turma;
    
//    @OneToMany(mappedBy = "aluno")
//    @ElementCollection
    @Transient
    private List<Telefone> telefones;

    @Override
    public int hashCode()
    {
        int hash = 7;
        hash = 97 * hash + Objects.hashCode(this.id);
        hash = 97 * hash + Objects.hashCode(this.nome);
        hash = 97 * hash + Objects.hashCode(this.sobrenome);
        hash = 97 * hash + Objects.hashCode(this.endereco);
        hash = 97 * hash + Objects.hashCode(this.turma);
        hash = 97 * hash + Objects.hashCode(this.telefones);
        return hash;
    }

    @Override
    public boolean equals(Object obj)
    {
        if (obj == null)
        {
            return false;
        }
        if (getClass() != obj.getClass())
        {
            return false;
        }
        final Aluno other = (Aluno) obj;
        if (!Objects.equals(this.id, other.id))
        {
            return false;
        }
        if (!Objects.equals(this.nome, other.nome))
        {
            return false;
        }
        if (!Objects.equals(this.sobrenome, other.sobrenome))
        {
            return false;
        }
        if (!Objects.equals(this.endereco, other.endereco))
        {
            return false;
        }
        if (!Objects.equals(this.turma, other.turma))
        {
            return false;
        }
        if (!Objects.equals(this.telefones, other.telefones))
        {
            return false;
        }
        return true;
    }
    
    /**
     * @return the id
     */
    public Long getId()
    {
        return id;
    }

    /**
     * @param id the id to set
     */
    public void setId(Long id)
    {
        this.id = id;
    }

    /**
     * @return the nome
     */
    public String getNome()
    {
        return nome;
    }

    /**
     * @param nome the nome to set
     */
    public void setNome(String nome)
    {
        this.nome = nome;
    }

    /**
     * @return the sobrenome
     */
    public String getSobrenome()
    {
        return sobrenome;
    }

    /**
     * @param sobrenome the sobrenome to set
     */
    public void setSobrenome(String sobrenome)
    {
        this.sobrenome = sobrenome;
    }

    /**
     * @return the endereco
     */
    public Endereco getEndereco()
    {
        return endereco;
    }

    /**
     * @param endereco the endereco to set
     */
    public void setEndereco(Endereco endereco)
    {
        this.endereco = endereco;
    }

    /**
     * @return the turma
     */
    public Turma getTurma()
    {
        return turma;
    }

    /**
     * @param turma the turma to set
     */
    public void setTurma(Turma turma)
    {
        this.turma = turma;
    }

    /**
     * @return the telefones
     */
    public List<Telefone> getTelefones()
    {
        return telefones;
    }

    /**
     * @param telefones the telefones to set
     */
    public void setTelefones(List<Telefone> telefones)
    {
        this.telefones = telefones;
    }
    
    
}
4.01 KB in 7 ms with coderay