QCodeReposBuilds.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;


/**
 * QCodeReposBuilds is a Querydsl query type for CodeReposBuilds
 */
@Generated("com.mysema.query.codegen.EntitySerializer")
public class QCodeReposBuilds extends EntityPathBase<CodeReposBuilds> {

    private static final long serialVersionUID = 1547560471L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QCodeReposBuilds codeReposBuilds = new QCodeReposBuilds("codeReposBuilds");

    public final QBaseModel _super;

    public final SetPath<org.bson.types.ObjectId, org.bson.types.QObjectId> buildCollectorItems = this.<org.bson.types.ObjectId, org.bson.types.QObjectId>createSet("buildCollectorItems", org.bson.types.ObjectId.class, org.bson.types.QObjectId.class, PathInits.DIRECT2);

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

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

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

    public QCodeReposBuilds(String variable) {
        this(CodeReposBuilds.class, forVariable(variable), INITS);
    }

    public QCodeReposBuilds(Path<? extends CodeReposBuilds> path) {
        this(path.getType(), path.getMetadata(), path.getMetadata().isRoot() ? INITS : PathInits.DEFAULT);
    }

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

    public QCodeReposBuilds(PathMetadata<?> metadata, PathInits inits) {
        this(CodeReposBuilds.class, metadata, inits);
    }

    public QCodeReposBuilds(Class<? extends CodeReposBuilds> type, PathMetadata<?> metadata, PathInits inits) {
        super(type, metadata, inits);
        this._super = new QBaseModel(type, metadata, inits);
        this.id = _super.id;
    }

}