1 package org.oxerr.commons.user.domain;
2
3 import static com.querydsl.core.types.PathMetadataFactory.*;
4
5 import com.querydsl.core.types.dsl.*;
6
7 import com.querydsl.core.types.PathMetadata;
8 import javax.annotation.Generated;
9 import com.querydsl.core.types.Path;
10 import com.querydsl.core.types.dsl.PathInits;
11
12
13
14
15
16 @Generated("com.querydsl.codegen.EntitySerializer")
17 public class QRole extends EntityPathBase<Role> {
18
19 private static final long serialVersionUID = -394245569L;
20
21 private static final PathInits INITS = PathInits.DIRECT2;
22
23 public static final QRole role = new QRole("role");
24
25 public final QBaseEntity _super;
26
27
28 public final QUser createdBy;
29
30
31 public final DateTimePath<java.time.Instant> createdDate;
32
33
34 public final ComparablePath<java.util.UUID> id;
35
36
37 public final QUser lastModifiedBy;
38
39
40 public final DateTimePath<java.time.Instant> lastModifiedDate;
41
42 public final StringPath name = createString("name");
43
44
45 public final NumberPath<Long> version;
46
47 public QRole(String variable) {
48 this(Role.class, forVariable(variable), INITS);
49 }
50
51 public QRole(Path<? extends Role> path) {
52 this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
53 }
54
55 public QRole(PathMetadata metadata) {
56 this(metadata, PathInits.getFor(metadata, INITS));
57 }
58
59 public QRole(PathMetadata metadata, PathInits inits) {
60 this(Role.class, metadata, inits);
61 }
62
63 public QRole(Class<? extends Role> type, PathMetadata metadata, PathInits inits) {
64 super(type, metadata, inits);
65 this._super = new QBaseEntity(type, metadata, inits);
66 this.createdBy = _super.createdBy;
67 this.createdDate = _super.createdDate;
68 this.id = _super.id;
69 this.lastModifiedBy = _super.lastModifiedBy;
70 this.lastModifiedDate = _super.lastModifiedDate;
71 this.version = _super.version;
72 }
73
74 }
75