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

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


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

    private static final long serialVersionUID = 1303759866L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QMonitor2 monitor2 = new QMonitor2("monitor2");

    public final QBaseModel _super;

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

    public final org.bson.types.QObjectId dashboardId;

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

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

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

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

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

    public QMonitor2(String variable) {
        this(Monitor2.class, forVariable(variable), INITS);
    }

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

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

    public QMonitor2(PathMetadata metadata, PathInits inits) {
        this(Monitor2.class, metadata, inits);
    }

    public QMonitor2(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this._super = new QBaseModel(type, metadata, inits);
        this.dashboardId = inits.isInitialized("dashboardId") ? new org.bson.types.QObjectId(forProperty("dashboardId")) : null;
        this.id = _super.id;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy