
org.oxerr.commons.user.domain.QRole Maven / Gradle / Ivy
The newest version!
package org.oxerr.commons.user.domain;
import static com.querydsl.core.types.PathMetadataFactory.*;
import com.querydsl.core.types.dsl.*;
import com.querydsl.core.types.PathMetadata;
import javax.annotation.Generated;
import com.querydsl.core.types.Path;
import com.querydsl.core.types.dsl.PathInits;
/**
* QRole is a Querydsl query type for Role
*/
@Generated("com.querydsl.codegen.EntitySerializer")
public class QRole extends EntityPathBase {
private static final long serialVersionUID = -394245569L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QRole role = new QRole("role");
public final QBaseEntity _super;
// inherited
public final QUser createdBy;
//inherited
public final DateTimePath createdDate;
//inherited
public final ComparablePath id;
// inherited
public final QUser lastModifiedBy;
//inherited
public final DateTimePath lastModifiedDate;
public final StringPath name = createString("name");
//inherited
public final NumberPath version;
public QRole(String variable) {
this(Role.class, forVariable(variable), INITS);
}
public QRole(Path extends Role> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QRole(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QRole(PathMetadata metadata, PathInits inits) {
this(Role.class, metadata, inits);
}
public QRole(Class extends Role> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new QBaseEntity(type, metadata, inits);
this.createdBy = _super.createdBy;
this.createdDate = _super.createdDate;
this.id = _super.id;
this.lastModifiedBy = _super.lastModifiedBy;
this.lastModifiedDate = _super.lastModifiedDate;
this.version = _super.version;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy