com.netgrif.application.engine.petrinet.domain.events.QBaseEvent 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.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;
/**
* QBaseEvent is a Querydsl query type for BaseEvent
*/
@Generated("com.querydsl.codegen.DefaultEmbeddableSerializer")
public class QBaseEvent extends BeanPath {
private static final long serialVersionUID = 143460463L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QBaseEvent baseEvent = new QBaseEvent("baseEvent");
public final com.netgrif.application.engine.petrinet.domain.QImported _super = new com.netgrif.application.engine.petrinet.domain.QImported(this);
public final StringPath id = createString("id");
//inherited
public final StringPath importId = _super.importId;
public final com.netgrif.application.engine.petrinet.domain.QI18nString message;
public final ListPath postActions = this.createList("postActions", com.netgrif.application.engine.petrinet.domain.dataset.logic.action.Action.class, com.netgrif.application.engine.petrinet.domain.dataset.logic.action.QAction.class, PathInits.DIRECT2);
public final ListPath preActions = this.createList("preActions", com.netgrif.application.engine.petrinet.domain.dataset.logic.action.Action.class, com.netgrif.application.engine.petrinet.domain.dataset.logic.action.QAction.class, PathInits.DIRECT2);
public final com.netgrif.application.engine.petrinet.domain.QI18nString title;
public QBaseEvent(String variable) {
this(BaseEvent.class, forVariable(variable), INITS);
}
public QBaseEvent(Path extends BaseEvent> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QBaseEvent(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QBaseEvent(PathMetadata metadata, PathInits inits) {
this(BaseEvent.class, metadata, inits);
}
public QBaseEvent(Class extends BaseEvent> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.message = inits.isInitialized("message") ? new com.netgrif.application.engine.petrinet.domain.QI18nString(forProperty("message")) : null;
this.title = inits.isInitialized("title") ? new com.netgrif.application.engine.petrinet.domain.QI18nString(forProperty("title")) : null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy