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

com.netgrif.application.engine.rules.domain.facts.QCaseCreatedFact Maven / Gradle / Ivy

Go to download

System provides workflow management functions including user, role and data management.

There is a newer version: 6.4.0
Show newest version
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;


/**
 * QCaseCreatedFact is a Querydsl query type for CaseCreatedFact
 */
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QCaseCreatedFact extends EntityPathBase {

    private static final long serialVersionUID = 2140879138L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QCaseCreatedFact caseCreatedFact = new QCaseCreatedFact("caseCreatedFact");

    public final QCaseFact _super;

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

    //inherited
    public final StringPath caseId;

    //inherited
    public final DateTimePath creationDate;

    public final EnumPath eventPhase = createEnum("eventPhase", com.netgrif.application.engine.petrinet.domain.events.EventPhase.class);

    public QCaseCreatedFact(String variable) {
        this(CaseCreatedFact.class, forVariable(variable), INITS);
    }

    public QCaseCreatedFact(Path path) {
        this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
    }

    public QCaseCreatedFact(PathMetadata metadata) {
        this(metadata, PathInits.getFor(metadata, INITS));
    }

    public QCaseCreatedFact(PathMetadata metadata, PathInits inits) {
        this(CaseCreatedFact.class, metadata, inits);
    }

    public QCaseCreatedFact(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this._super = new QCaseFact(type, metadata, inits);
        this._id = _super._id;
        this.caseId = _super.caseId;
        this.creationDate = _super.creationDate;
    }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy