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

com.netgrif.application.engine.petrinet.domain.events.QDataEvent Maven / Gradle / Ivy

Go to download

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

There is a newer version: 6.3.3
Show newest version
package com.netgrif.application.engine.petrinet.domain.events;

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;


/**
 * QDataEvent is a Querydsl query type for DataEvent
 */
@Generated("com.querydsl.codegen.DefaultEmbeddableSerializer")
public class QDataEvent extends BeanPath {

    private static final long serialVersionUID = 1596505910L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QDataEvent dataEvent = new QDataEvent("dataEvent");

    public final QBaseEvent _super;

    public final EnumPath defaultPhase = createEnum("defaultPhase", EventPhase.class);

    //inherited
    public final StringPath id;

    //inherited
    public final StringPath importId;

    // inherited
    public final com.netgrif.application.engine.petrinet.domain.QI18nString message;

    //inherited
    public final ListPath postActions;

    //inherited
    public final ListPath preActions;

    // inherited
    public final com.netgrif.application.engine.petrinet.domain.QI18nString title;

    public final EnumPath type = createEnum("type", DataEventType.class);

    public QDataEvent(String variable) {
        this(DataEvent.class, forVariable(variable), INITS);
    }

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

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

    public QDataEvent(PathMetadata metadata, PathInits inits) {
        this(DataEvent.class, metadata, inits);
    }

    public QDataEvent(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this._super = new QBaseEvent(type, metadata, inits);
        this.id = _super.id;
        this.importId = _super.importId;
        this.message = _super.message;
        this.postActions = _super.postActions;
        this.preActions = _super.preActions;
        this.title = _super.title;
    }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy