com.netgrif.application.engine.rules.domain.facts.QCaseFact Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of application-engine Show documentation
Show all versions of application-engine Show documentation
System provides workflow management functions including user, role and data management.
package com.netgrif.application.engine.rules.domain.facts;
import static com.querydsl.core.types.PathMetadataFactory.*;
import com.querydsl.core.types.dsl.*;
import com.querydsl.core.types.PathMetadata;
import javax.annotation.processing.Generated;
import com.querydsl.core.types.Path;
import com.querydsl.core.types.dsl.PathInits;
/**
* QCaseFact is a Querydsl query type for CaseFact
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QCaseFact extends EntityPathBase {
private static final long serialVersionUID = -1158456706L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QCaseFact caseFact = new QCaseFact("caseFact");
public final QFact _super;
// inherited
public final org.bson.types.QObjectId _id;
public final StringPath caseId = createString("caseId");
//inherited
public final DateTimePath creationDate;
public QCaseFact(String variable) {
this(CaseFact.class, forVariable(variable), INITS);
}
public QCaseFact(Path extends CaseFact> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QCaseFact(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QCaseFact(PathMetadata metadata, PathInits inits) {
this(CaseFact.class, metadata, inits);
}
public QCaseFact(Class extends CaseFact> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new QFact(type, metadata, inits);
this._id = _super._id;
this.creationDate = _super.creationDate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy