-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQPasswordResetToken.java
More file actions
61 lines (40 loc) · 2.05 KB
/
QPasswordResetToken.java
File metadata and controls
61 lines (40 loc) · 2.05 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
package learningFlow.learningFlow_BE.domain;
import static com.querydsl.core.types.PathMetadataFactory.*;
import com.querydsl.core.types.dsl.*;
import com.querydsl.core.types.PathMetadata;
import javax.annotation.processing.Generated;
import com.querydsl.core.types.Path;
import com.querydsl.core.types.dsl.PathInits;
/**
* QPasswordResetToken is a Querydsl query type for PasswordResetToken
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QPasswordResetToken extends EntityPathBase<PasswordResetToken> {
private static final long serialVersionUID = -1219280267L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QPasswordResetToken passwordResetToken = new QPasswordResetToken("passwordResetToken");
public final QBaseEntity _super = new QBaseEntity(this);
//inherited
public final DateTimePath<java.time.LocalDateTime> createdAt = _super.createdAt;
public final DateTimePath<java.time.LocalDateTime> expiryDate = createDateTime("expiryDate", java.time.LocalDateTime.class);
public final StringPath token = createString("token");
//inherited
public final DateTimePath<java.time.LocalDateTime> updatedAt = _super.updatedAt;
public final QUser user;
public QPasswordResetToken(String variable) {
this(PasswordResetToken.class, forVariable(variable), INITS);
}
public QPasswordResetToken(Path<? extends PasswordResetToken> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QPasswordResetToken(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QPasswordResetToken(PathMetadata metadata, PathInits inits) {
this(PasswordResetToken.class, metadata, inits);
}
public QPasswordResetToken(Class<? extends PasswordResetToken> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.user = inits.isInitialized("user") ? new QUser(forProperty("user"), inits.get("user")) : null;
}
}