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

com.capitalone.dashboard.model.QDashboard 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;


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

    private static final long serialVersionUID = -1978152718L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QDashboard dashboard = new QDashboard("dashboard");

    public final QBaseModel _super;

    public final ListPath activeWidgets = this.createList("activeWidgets", String.class, StringPath.class, PathInits.DIRECT2);

    public final QApplication application;

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

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

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

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

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

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

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

    public final ListPath owners = this.createList("owners", Owner.class, QOwner.class, PathInits.DIRECT2);

    public final BooleanPath remoteCreated = createBoolean("remoteCreated");

    public final EnumPath scoreDisplay = createEnum("scoreDisplay", ScoreDisplayType.class);

    public final BooleanPath scoreEnabled = createBoolean("scoreEnabled");

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

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

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

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

    public final BooleanPath validAppName = createBoolean("validAppName");

    public final BooleanPath validServiceName = createBoolean("validServiceName");

    public final ListPath widgets = this.createList("widgets", Widget.class, QWidget.class, PathInits.DIRECT2);

    public QDashboard(String variable) {
        this(Dashboard.class, forVariable(variable), INITS);
    }

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

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

    public QDashboard(PathMetadata metadata, PathInits inits) {
        this(Dashboard.class, metadata, inits);
    }

    public QDashboard(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this._super = new QBaseModel(type, metadata, inits);
        this.application = inits.isInitialized("application") ? new QApplication(forProperty("application")) : null;
        this.id = _super.id;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy