com.netgrif.application.engine.history.domain.impersonationevents.QImpersonationEventLog 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.impersonationevents;
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;
/**
* QImpersonationEventLog is a Querydsl query type for ImpersonationEventLog
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QImpersonationEventLog extends EntityPathBase {
private static final long serialVersionUID = 1680102517L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QImpersonationEventLog impersonationEventLog = new QImpersonationEventLog("impersonationEventLog");
public final com.netgrif.application.engine.history.domain.baseevent.QEventLog _super;
//inherited
public final EnumPath eventPhase;
// inherited
public final org.bson.types.QObjectId id;
public final StringPath impersonated = createString("impersonated");
public final StringPath impersonator = createString("impersonator");
//inherited
public final StringPath stringId;
//inherited
public final ListPath triggeredEvents;
// inherited
public final org.bson.types.QObjectId triggerId;
public QImpersonationEventLog(String variable) {
this(ImpersonationEventLog.class, forVariable(variable), INITS);
}
public QImpersonationEventLog(Path extends ImpersonationEventLog> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QImpersonationEventLog(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QImpersonationEventLog(PathMetadata metadata, PathInits inits) {
this(ImpersonationEventLog.class, metadata, inits);
}
public QImpersonationEventLog(Class extends ImpersonationEventLog> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new com.netgrif.application.engine.history.domain.baseevent.QEventLog(type, metadata, inits);
this.eventPhase = _super.eventPhase;
this.id = _super.id;
this.stringId = _super.stringId;
this.triggeredEvents = _super.triggeredEvents;
this.triggerId = _super.triggerId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy