QServiceAccount.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;
/**
* QServiceAccount is a Querydsl query type for ServiceAccount
*/
@Generated("com.mysema.query.codegen.EntitySerializer")
public class QServiceAccount extends EntityPathBase<ServiceAccount> {
private static final long serialVersionUID = 1669841434L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QServiceAccount serviceAccount = new QServiceAccount("serviceAccount");
public final QBaseModel _super;
public final StringPath fileNames = createString("fileNames");
// inherited
public final org.bson.types.QObjectId id;
public final StringPath serviceAccountName = createString("serviceAccountName");
public QServiceAccount(String variable) {
this(ServiceAccount.class, forVariable(variable), INITS);
}
public QServiceAccount(Path<? extends ServiceAccount> path) {
this(path.getType(), path.getMetadata(), path.getMetadata().isRoot() ? INITS : PathInits.DEFAULT);
}
public QServiceAccount(PathMetadata<?> metadata) {
this(metadata, metadata.isRoot() ? INITS : PathInits.DEFAULT);
}
public QServiceAccount(PathMetadata<?> metadata, PathInits inits) {
this(ServiceAccount.class, metadata, inits);
}
public QServiceAccount(Class<? extends ServiceAccount> type, PathMetadata<?> metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new QBaseModel(type, metadata, inits);
this.id = _super.id;
}
}