com.netgrif.application.engine.history.domain.baseevent.QEventLog 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.history.domain.baseevent;
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;
/**
* QEventLog is a Querydsl query type for EventLog
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QEventLog extends EntityPathBase {
private static final long serialVersionUID = 724867143L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QEventLog eventLog = new QEventLog("eventLog");
public final EnumPath eventPhase = createEnum("eventPhase", com.netgrif.application.engine.petrinet.domain.events.EventPhase.class);
public final org.bson.types.QObjectId id;
public final StringPath stringId = createString("stringId");
public final ListPath triggeredEvents = this.createList("triggeredEvents", org.bson.types.ObjectId.class, org.bson.types.QObjectId.class, PathInits.DIRECT2);
public final org.bson.types.QObjectId triggerId;
public QEventLog(String variable) {
this(EventLog.class, forVariable(variable), INITS);
}
public QEventLog(Path extends EventLog> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QEventLog(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QEventLog(PathMetadata metadata, PathInits inits) {
this(EventLog.class, metadata, inits);
}
public QEventLog(Class extends EventLog> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.id = inits.isInitialized("id") ? new org.bson.types.QObjectId(forProperty("id")) : null;
this.triggerId = inits.isInitialized("triggerId") ? new org.bson.types.QObjectId(forProperty("triggerId")) : null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy