
com.capitalone.dashboard.model.QBuild Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hygieia-common Show documentation
Show all versions of hygieia-common Show documentation
Core package shared by API layer and Microservices
The newest version!
package com.capitalone.dashboard.model;
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;
/**
* QBuild is a Querydsl query type for Build
*/
@Generated("com.querydsl.codegen.EntitySerializer")
public class QBuild extends EntityPathBase {
private static final long serialVersionUID = 1419936716L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QBuild build = new QBuild("build");
public final QBaseModel _super;
public final EnumPath buildStatus = createEnum("buildStatus", BuildStatus.class);
public final StringPath buildUrl = createString("buildUrl");
public final ListPath codeRepos = this.createList("codeRepos", RepoBranch.class, QRepoBranch.class, PathInits.DIRECT2);
public final org.bson.types.QObjectId collectorItemId;
public final NumberPath duration = createNumber("duration", Long.class);
public final NumberPath endTime = createNumber("endTime", Long.class);
// inherited
public final org.bson.types.QObjectId id;
public final StringPath log = createString("log");
public final StringPath number = createString("number");
public final ListPath sourceChangeSet = this.createList("sourceChangeSet", SCM.class, QSCM.class, PathInits.DIRECT2);
public final ListPath stages = this.createList("stages", BuildStage.class, QBuildStage.class, PathInits.DIRECT2);
public final StringPath startedBy = createString("startedBy");
public final NumberPath startTime = createNumber("startTime", Long.class);
public final NumberPath timestamp = createNumber("timestamp", Long.class);
public QBuild(String variable) {
this(Build.class, forVariable(variable), INITS);
}
public QBuild(Path extends Build> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QBuild(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QBuild(PathMetadata metadata, PathInits inits) {
this(Build.class, metadata, inits);
}
public QBuild(Class extends Build> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new QBaseModel(type, metadata, inits);
this.collectorItemId = inits.isInitialized("collectorItemId") ? new org.bson.types.QObjectId(forProperty("collectorItemId")) : null;
this.id = _super.id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy