
com.capitalone.dashboard.model.QService 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;
/**
* QService is a Querydsl query type for Service
*/
@Generated("com.querydsl.codegen.EntitySerializer")
public class QService extends EntityPathBase {
private static final long serialVersionUID = 512795795L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QService service = new QService("service");
public final QBaseModel _super;
public final StringPath applicationName = createString("applicationName");
//inherited
public final StringPath clientReference;
public final org.bson.types.QObjectId dashboardId;
public final SetPath dependedBy = this.createSet("dependedBy", org.bson.types.ObjectId.class, org.bson.types.QObjectId.class, PathInits.DIRECT2);
// inherited
public final org.bson.types.QObjectId id;
public final NumberPath lastUpdated = createNumber("lastUpdated", Long.class);
public final StringPath message = createString("message");
public final StringPath name = createString("name");
public final EnumPath status = createEnum("status", ServiceStatus.class);
//inherited
public final DateTimePath upsertTime;
public final StringPath url = createString("url");
public QService(String variable) {
this(Service.class, forVariable(variable), INITS);
}
public QService(Path extends Service> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QService(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QService(PathMetadata metadata, PathInits inits) {
this(Service.class, metadata, inits);
}
public QService(Class extends Service> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new QBaseModel(type, metadata, inits);
this.clientReference = _super.clientReference;
this.dashboardId = inits.isInitialized("dashboardId") ? new org.bson.types.QObjectId(forProperty("dashboardId")) : null;
this.id = _super.id;
this.upsertTime = _super.upsertTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy