forked from solid-connection/solid-connect-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApplication.java
More file actions
139 lines (120 loc) · 4.6 KB
/
Application.java
File metadata and controls
139 lines (120 loc) · 4.6 KB
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
package com.example.solidconnection.application.domain;
import com.example.solidconnection.siteuser.domain.SiteUser;
import jakarta.persistence.Column;
import jakarta.persistence.Embedded;
import jakarta.persistence.Entity;
import jakarta.persistence.EnumType;
import jakarta.persistence.Enumerated;
import jakarta.persistence.FetchType;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
import jakarta.persistence.Index;
import jakarta.persistence.ManyToOne;
import jakarta.persistence.Table;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import org.hibernate.annotations.DynamicInsert;
import org.hibernate.annotations.DynamicUpdate;
import static com.example.solidconnection.application.domain.VerifyStatus.PENDING;
@Getter
@NoArgsConstructor(access = lombok.AccessLevel.PROTECTED)
@DynamicUpdate
@DynamicInsert
@Entity
@Table(indexes = {
@Index(name = "idx_app_user_term_delete",
columnList = "site_user_id, term, is_delete"),
@Index(name = "idx_app_first_choice_search",
columnList = "verify_status, term, is_delete, first_choice_university_info_for_apply_id"),
@Index(name = "idx_app_second_choice_search",
columnList = "verify_status, term, is_delete, second_choice_university_info_for_apply_id"),
@Index(name = "idx_app_third_choice_search",
columnList = "verify_status, term, is_delete, third_choice_university_info_for_apply_id")
})
public class Application {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@Embedded
private Gpa gpa;
@Embedded
private LanguageTest languageTest;
@Setter
@Column(columnDefinition = "varchar(50) not null default 'PENDING'", name="verify_status")
@Enumerated(EnumType.STRING)
private VerifyStatus verifyStatus;
@Column(length = 100, name="nickname_for_apply")
private String nicknameForApply;
@Column(columnDefinition = "int not null default 1", name="update_count")
private Integer updateCount;
@Column(length = 50, nullable = false, name="term")
private String term;
@Column(name="is_delete")
private boolean isDelete = false;
@Column(nullable = false , name = "first_choice_university_info_for_apply_id")
private long firstChoiceUnivApplyInfoId;
@Column(name = "second_choice_university_info_for_apply_id")
private Long secondChoiceUnivApplyInfoId;
@Column(name = "third_choice_university_info_for_apply_id")
private Long thirdChoiceUnivApplyInfoId;
@ManyToOne(fetch = FetchType.LAZY)
private SiteUser siteUser;
public Application(
SiteUser siteUser,
Gpa gpa,
LanguageTest languageTest,
String term) {
this.siteUser = siteUser;
this.gpa = gpa;
this.languageTest = languageTest;
this.term = term;
this.updateCount = 1;
this.verifyStatus = PENDING;
}
public Application(
SiteUser siteUser,
Gpa gpa,
LanguageTest languageTest,
String term,
Integer updateCount,
long firstChoiceUnivApplyInfoId,
Long secondChoiceUnivApplyInfoId,
Long thirdChoiceUnivApplyInfoId,
String nicknameForApply) {
this.siteUser = siteUser;
this.gpa = gpa;
this.languageTest = languageTest;
this.term = term;
this.updateCount = updateCount;
this.firstChoiceUnivApplyInfoId = firstChoiceUnivApplyInfoId;
this.secondChoiceUnivApplyInfoId = secondChoiceUnivApplyInfoId;
this.thirdChoiceUnivApplyInfoId = thirdChoiceUnivApplyInfoId;
this.nicknameForApply = nicknameForApply;
this.verifyStatus = PENDING;
}
public Application(
SiteUser siteUser,
Gpa gpa,
LanguageTest languageTest,
String term,
long firstChoiceUnivApplyInfoId,
Long secondChoiceUnivApplyInfoId,
Long thirdChoiceUnivApplyInfoId,
String nicknameForApply) {
this.siteUser = siteUser;
this.gpa = gpa;
this.languageTest = languageTest;
this.term = term;
this.updateCount = 1;
this.firstChoiceUnivApplyInfoId = firstChoiceUnivApplyInfoId;
this.secondChoiceUnivApplyInfoId = secondChoiceUnivApplyInfoId;
this.thirdChoiceUnivApplyInfoId = thirdChoiceUnivApplyInfoId;
this.nicknameForApply = nicknameForApply;
this.verifyStatus = PENDING;
}
public void setIsDeleteTrue() {
this.isDelete = true;
}
}