com.capitalone.dashboard.model.QLibraryPolicyResult 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.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;
/**
* QLibraryPolicyResult is a Querydsl query type for LibraryPolicyResult
*/
@Generated("com.mysema.query.codegen.EntitySerializer")
public class QLibraryPolicyResult extends EntityPathBase {
private static final long serialVersionUID = 828663080L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QLibraryPolicyResult libraryPolicyResult = new QLibraryPolicyResult("libraryPolicyResult");
public final QBaseModel _super;
public final org.bson.types.QObjectId buildId;
public final StringPath buildUrl = createString("buildUrl");
public final org.bson.types.QObjectId collectorItemId;
public final NumberPath evaluationTimestamp = createNumber("evaluationTimestamp", Long.class);
// inherited
public final org.bson.types.QObjectId id;
public final NumberPath knownComponentCount = createNumber("knownComponentCount", Integer.class);
public final ListPath policyAlert = this.createList("policyAlert", PolicyScanMetric.class, QPolicyScanMetric.class, PathInits.DIRECT2);
public final StringPath productName = createString("productName");
public final StringPath projectName = createString("projectName");
public final StringPath reportUrl = createString("reportUrl");
public final StringPath scanState = createString("scanState");
public final MapPath, SimplePath>> threats = this., SimplePath>>createMap("threats", LibraryPolicyType.class, java.util.Set.class, SimplePath.class);
public final NumberPath timestamp = createNumber("timestamp", Long.class);
public final NumberPath totalComponentCount = createNumber("totalComponentCount", Integer.class);
public QLibraryPolicyResult(String variable) {
this(LibraryPolicyResult.class, forVariable(variable), INITS);
}
public QLibraryPolicyResult(Path extends LibraryPolicyResult> path) {
this(path.getType(), path.getMetadata(), path.getMetadata().isRoot() ? INITS : PathInits.DEFAULT);
}
public QLibraryPolicyResult(PathMetadata> metadata) {
this(metadata, metadata.isRoot() ? INITS : PathInits.DEFAULT);
}
public QLibraryPolicyResult(PathMetadata> metadata, PathInits inits) {
this(LibraryPolicyResult.class, metadata, inits);
}
public QLibraryPolicyResult(Class extends LibraryPolicyResult> type, PathMetadata> metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new QBaseModel(type, metadata, inits);
this.buildId = inits.isInitialized("buildId") ? new org.bson.types.QObjectId(forProperty("buildId")) : null;
this.collectorItemId = inits.isInitialized("collectorItemId") ? new org.bson.types.QObjectId(forProperty("collectorItemId")) : null;
this.id = _super.id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy