com.thinkbiganalytics.metadata.jpa.jobrepo.job.QJpaBatchJobExecution Maven / Gradle / Ivy
package com.thinkbiganalytics.metadata.jpa.jobrepo.job;
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;
/**
* QJpaBatchJobExecution is a Querydsl query type for JpaBatchJobExecution
*/
@Generated("com.querydsl.codegen.EntitySerializer")
public class QJpaBatchJobExecution extends EntityPathBase {
private static final long serialVersionUID = -1394658471L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QJpaBatchJobExecution jpaBatchJobExecution = new QJpaBatchJobExecution("jpaBatchJobExecution");
public final ComparablePath createTime = createComparable("createTime", org.joda.time.DateTime.class);
public final NumberPath endDay = createNumber("endDay", Integer.class);
public final NumberPath endMonth = createNumber("endMonth", Integer.class);
public final ComparablePath endTime = createComparable("endTime", org.joda.time.DateTime.class);
public final NumberPath endTimeMillis = createNumber("endTimeMillis", Long.class);
public final NumberPath endYear = createNumber("endYear", Integer.class);
public final EnumPath exitCode = createEnum("exitCode", com.thinkbiganalytics.metadata.api.jobrepo.ExecutionConstants.ExitCode.class);
public final StringPath exitMessage = createString("exitMessage");
public final BooleanPath isStream = createBoolean("isStream");
public final SetPath jobExecutionContext = this.createSet("jobExecutionContext", JpaBatchJobExecutionContextValue.class, QJpaBatchJobExecutionContextValue.class, PathInits.DIRECT2);
public final NumberPath jobExecutionId = createNumber("jobExecutionId", Long.class);
public final QJpaBatchJobInstance jobInstance;
public final SetPath jobParameters = this.createSet("jobParameters", JpaBatchJobExecutionParameter.class, QJpaBatchJobExecutionParameter.class, PathInits.DIRECT2);
public final DateTimePath lastUpdated = createDateTime("lastUpdated", org.joda.time.DateTime.class);
public final com.thinkbiganalytics.metadata.jpa.jobrepo.nifi.QJpaNifiEventJobExecution nifiEventJobExecution;
public final NumberPath startDay = createNumber("startDay", Integer.class);
public final NumberPath startMonth = createNumber("startMonth", Integer.class);
public final ComparablePath startTime = createComparable("startTime", org.joda.time.DateTime.class);
public final NumberPath startTimeMillis = createNumber("startTimeMillis", Long.class);
public final NumberPath startYear = createNumber("startYear", Integer.class);
public final EnumPath status = createEnum("status", com.thinkbiganalytics.metadata.api.jobrepo.job.BatchJobExecution.JobStatus.class);
public final SetPath stepExecutions = this.createSet("stepExecutions", com.thinkbiganalytics.metadata.jpa.jobrepo.step.JpaBatchStepExecution.class, com.thinkbiganalytics.metadata.jpa.jobrepo.step.QJpaBatchStepExecution.class, PathInits.DIRECT2);
public final NumberPath version = createNumber("version", Long.class);
public QJpaBatchJobExecution(String variable) {
this(JpaBatchJobExecution.class, forVariable(variable), INITS);
}
public QJpaBatchJobExecution(Path extends JpaBatchJobExecution> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QJpaBatchJobExecution(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QJpaBatchJobExecution(PathMetadata metadata, PathInits inits) {
this(JpaBatchJobExecution.class, metadata, inits);
}
public QJpaBatchJobExecution(Class extends JpaBatchJobExecution> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.jobInstance = inits.isInitialized("jobInstance") ? new QJpaBatchJobInstance(forProperty("jobInstance"), inits.get("jobInstance")) : null;
this.nifiEventJobExecution = inits.isInitialized("nifiEventJobExecution") ? new com.thinkbiganalytics.metadata.jpa.jobrepo.nifi.QJpaNifiEventJobExecution(forProperty("nifiEventJobExecution"), inits.get("nifiEventJobExecution")) : null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy