com.capitalone.dashboard.model.QContainerScan Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core package shared by API layer and Microservices
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;
/**
* QContainerScan is a Querydsl query type for ContainerScan
*/
@Generated("com.querydsl.codegen.EntitySerializer")
public class QContainerScan extends EntityPathBase {
private static final long serialVersionUID = 1431756284L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QContainerScan containerScan = new QContainerScan("containerScan");
public final QBaseModel _super;
public final StringPath buildUrl = createString("buildUrl");
public final StringPath businessApplication = createString("businessApplication");
public final StringPath businessService = createString("businessService");
//inherited
public final StringPath clientReference;
public final org.bson.types.QObjectId collectorItemId;
public final StringPath errorCode = createString("errorCode");
public final StringPath httpStatusCode = createString("httpStatusCode");
// inherited
public final org.bson.types.QObjectId id;
public final StringPath identifierName = createString("identifierName");
public final StringPath identifierUrl = createString("identifierUrl");
public final StringPath identifierVersion = createString("identifierVersion");
public final BooleanPath isPromotable = createBoolean("isPromotable");
public final BooleanPath isVulnerable = createBoolean("isVulnerable");
public final StringPath message = createString("message");
public final BooleanPath promotable = createBoolean("promotable");
//inherited
public final DateTimePath upsertTime;
public final ListPath vulnerabilities = this.createList("vulnerabilities", Vulnerability.class, QVulnerability.class, PathInits.DIRECT2);
public final BooleanPath vulnerable = createBoolean("vulnerable");
public QContainerScan(String variable) {
this(ContainerScan.class, forVariable(variable), INITS);
}
public QContainerScan(Path extends ContainerScan> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QContainerScan(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QContainerScan(PathMetadata metadata, PathInits inits) {
this(ContainerScan.class, metadata, inits);
}
public QContainerScan(Class extends ContainerScan> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new QBaseModel(type, metadata, inits);
this.clientReference = _super.clientReference;
this.collectorItemId = inits.isInitialized("collectorItemId") ? new org.bson.types.QObjectId(forProperty("collectorItemId")) : null;
this.id = _super.id;
this.upsertTime = _super.upsertTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy