org.genesys.blocks.auditlog.model.QAuditLog Maven / Gradle / Ivy
package org.genesys.blocks.auditlog.model;
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;
/**
* QAuditLog is a Querydsl query type for AuditLog
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QAuditLog extends EntityPathBase {
private static final long serialVersionUID = -811475797L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QAuditLog auditLog = new QAuditLog("auditLog");
public final org.genesys.blocks.model.QEmptyModel _super = new org.genesys.blocks.model.QEmptyModel(this);
public final EnumPath action = createEnum("action", AuditAction.class);
public final org.genesys.blocks.model.QClassPK classPk;
public final NumberPath createdBy = createNumber("createdBy", Long.class);
public final NumberPath entityId = createNumber("entityId", Long.class);
public final NumberPath id = createNumber("id", Long.class);
public final DateTimePath logDate = createDateTime("logDate", java.time.Instant.class);
public final StringPath newState = createString("newState");
public final StringPath previousState = createString("previousState");
public final StringPath propertyName = createString("propertyName");
public final org.genesys.blocks.model.QClassPK referencedEntity;
public QAuditLog(String variable) {
this(AuditLog.class, forVariable(variable), INITS);
}
public QAuditLog(Path extends AuditLog> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QAuditLog(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QAuditLog(PathMetadata metadata, PathInits inits) {
this(AuditLog.class, metadata, inits);
}
public QAuditLog(Class extends AuditLog> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.classPk = inits.isInitialized("classPk") ? new org.genesys.blocks.model.QClassPK(forProperty("classPk")) : null;
this.referencedEntity = inits.isInitialized("referencedEntity") ? new org.genesys.blocks.model.QClassPK(forProperty("referencedEntity")) : null;
}
}