com.capitalone.dashboard.model.QDashboard Maven / Gradle / Ivy
package com.capitalone.dashboard.model;
import static com.querydsl.core.types.PathMetadataFactory.*;
import com.querydsl.core.types.dsl.*;
import com.querydsl.core.types.PathMetadata;
import javax.annotation.Generated;
import com.querydsl.core.types.Path;
import com.querydsl.core.types.dsl.PathInits;
/**
* QDashboard is a Querydsl query type for Dashboard
*/
@Generated("com.querydsl.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 extends Dashboard> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QDashboard(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QDashboard(PathMetadata metadata, PathInits inits) {
this(Dashboard.class, metadata, inits);
}
public QDashboard(Class extends Dashboard> 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 - 2025 Weber Informatics LLC | Privacy Policy