All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.capitalone.dashboard.model.QTestResult Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
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;


/**
 * QTestResult is a Querydsl query type for TestResult
 */
@Generated("com.mysema.query.codegen.EntitySerializer")
public class QTestResult extends EntityPathBase {

    private static final long serialVersionUID = -1383944015L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QTestResult testResult = new QTestResult("testResult");

    public final QBaseModel _super;

    public final SimplePath buildArtifact = createSimple("buildArtifact", Object.class);

    public final org.bson.types.QObjectId buildId;

    public final org.bson.types.QObjectId collectorItemId;

    public final StringPath description = createString("description");

    public final NumberPath duration = createNumber("duration", Long.class);

    public final NumberPath endTime = createNumber("endTime", Long.class);

    public final StringPath executionId = createString("executionId");

    public final NumberPath failureCount = createNumber("failureCount", Integer.class);

    // inherited
    public final org.bson.types.QObjectId id;

    public final StringPath perfRisk = createString("perfRisk");

    public final StringPath resultStatus = createString("resultStatus");

    public final NumberPath skippedCount = createNumber("skippedCount", Integer.class);

    public final NumberPath startTime = createNumber("startTime", Long.class);

    public final NumberPath successCount = createNumber("successCount", Integer.class);

    public final StringPath targetAppName = createString("targetAppName");

    public final StringPath targetEnvName = createString("targetEnvName");

    public final CollectionPath testCapabilities = this.createCollection("testCapabilities", TestCapability.class, QTestCapability.class, PathInits.DIRECT2);

    public final NumberPath timestamp = createNumber("timestamp", Long.class);

    public final NumberPath totalCount = createNumber("totalCount", Integer.class);

    public final EnumPath type = createEnum("type", TestSuiteType.class);

    public final NumberPath unknownStatusCount = createNumber("unknownStatusCount", Integer.class);

    public final StringPath url = createString("url");

    public QTestResult(String variable) {
        this(TestResult.class, forVariable(variable), INITS);
    }

    public QTestResult(Path path) {
        this(path.getType(), path.getMetadata(), path.getMetadata().isRoot() ? INITS : PathInits.DEFAULT);
    }

    public QTestResult(PathMetadata metadata) {
        this(metadata, metadata.isRoot() ? INITS : PathInits.DEFAULT);
    }

    public QTestResult(PathMetadata metadata, PathInits inits) {
        this(TestResult.class, metadata, inits);
    }

    public QTestResult(Class 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;
    }

}