com.thinkbiganalytics.metadata.jpa.jobrepo.step.QJpaBatchStepExecution Maven / Gradle / Ivy
package com.thinkbiganalytics.metadata.jpa.jobrepo.step;
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;
/**
* QJpaBatchStepExecution is a Querydsl query type for JpaBatchStepExecution
*/
@Generated("com.querydsl.codegen.EntitySerializer")
public class QJpaBatchStepExecution extends EntityPathBase {
private static final long serialVersionUID = 2026775193L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QJpaBatchStepExecution jpaBatchStepExecution = new QJpaBatchStepExecution("jpaBatchStepExecution");
public final DateTimePath endTime = createDateTime("endTime", org.joda.time.DateTime.class);
public final EnumPath exitCode = createEnum("exitCode", com.thinkbiganalytics.metadata.api.jobrepo.ExecutionConstants.ExitCode.class);
public final StringPath exitMessage = createString("exitMessage");
public final com.thinkbiganalytics.metadata.jpa.jobrepo.job.QJpaBatchJobExecution jobExecution;
public final NumberPath jobExecutionId = createNumber("jobExecutionId", Long.class);
public final DateTimePath lastUpdated = createDateTime("lastUpdated", org.joda.time.DateTime.class);
public final com.thinkbiganalytics.metadata.jpa.jobrepo.nifi.QJpaNifiEventStepExecution nifiEventStepExecution;
public final DateTimePath startTime = createDateTime("startTime", org.joda.time.DateTime.class);
public final EnumPath status = createEnum("status", com.thinkbiganalytics.metadata.api.jobrepo.step.BatchStepExecution.StepStatus.class);
public final SetPath stepExecutionContext = this.createSet("stepExecutionContext", JpaBatchStepExecutionContextValue.class, QJpaBatchStepExecutionContextValue.class, PathInits.DIRECT2);
public final NumberPath stepExecutionId = createNumber("stepExecutionId", Long.class);
public final StringPath stepName = createString("stepName");
public final NumberPath version = createNumber("version", Long.class);
public QJpaBatchStepExecution(String variable) {
this(JpaBatchStepExecution.class, forVariable(variable), INITS);
}
public QJpaBatchStepExecution(Path extends JpaBatchStepExecution> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QJpaBatchStepExecution(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QJpaBatchStepExecution(PathMetadata metadata, PathInits inits) {
this(JpaBatchStepExecution.class, metadata, inits);
}
public QJpaBatchStepExecution(Class extends JpaBatchStepExecution> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.jobExecution = inits.isInitialized("jobExecution") ? new com.thinkbiganalytics.metadata.jpa.jobrepo.job.QJpaBatchJobExecution(forProperty("jobExecution"), inits.get("jobExecution")) : null;
this.nifiEventStepExecution = inits.isInitialized("nifiEventStepExecution") ? new com.thinkbiganalytics.metadata.jpa.jobrepo.nifi.QJpaNifiEventStepExecution(forProperty("nifiEventStepExecution"), inits.get("nifiEventStepExecution")) : null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy