QFortifyScanReport.java
package com.capitalone.dashboard.model;
import static com.mysema.query.types.PathMetadataFactory.*;
import com.mysema.query.types.path.*;
import com.mysema.query.types.PathMetadata;
import javax.annotation.Generated;
import com.mysema.query.types.Path;
import com.mysema.query.types.path.PathInits;
/**
* QFortifyScanReport is a Querydsl query type for FortifyScanReport
*/
@Generated("com.mysema.query.codegen.EntitySerializer")
public class QFortifyScanReport extends EntityPathBase<FortifyScanReport> {
private static final long serialVersionUID = 199709600L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QFortifyScanReport fortifyScanReport = new QFortifyScanReport("fortifyScanReport");
public final QBaseModel _super;
public final org.bson.types.QObjectId collectorItemId;
// inherited
public final org.bson.types.QObjectId id;
public final StringPath name = createString("name");
public final NumberPath<Long> projectId = createNumber("projectId", Long.class);
public final MapPath<String, FortifyScanReport.Threat, QFortifyScanReport_Threat> threats = this.<String, FortifyScanReport.Threat, QFortifyScanReport_Threat>createMap("threats", String.class, FortifyScanReport.Threat.class, QFortifyScanReport_Threat.class);
public final NumberPath<Long> timestamp = createNumber("timestamp", Long.class);
public final StringPath url = createString("url");
public final StringPath version = createString("version");
public QFortifyScanReport(String variable) {
this(FortifyScanReport.class, forVariable(variable), INITS);
}
public QFortifyScanReport(Path<? extends FortifyScanReport> path) {
this(path.getType(), path.getMetadata(), path.getMetadata().isRoot() ? INITS : PathInits.DEFAULT);
}
public QFortifyScanReport(PathMetadata<?> metadata) {
this(metadata, metadata.isRoot() ? INITS : PathInits.DEFAULT);
}
public QFortifyScanReport(PathMetadata<?> metadata, PathInits inits) {
this(FortifyScanReport.class, metadata, inits);
}
public QFortifyScanReport(Class<? extends FortifyScanReport> 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;
}
}