com.netgrif.application.engine.workflow.domain.QCase 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.workflow.domain;
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;
/**
* QCase is a Querydsl query type for Case
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QCase extends EntityPathBase {
private static final long serialVersionUID = -929110493L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QCase case$ = new QCase("case$");
public final org.bson.types.QObjectId _id;
public final MapPath> activePlaces = this.>createMap("activePlaces", String.class, Integer.class, NumberPath.class);
public final com.netgrif.application.engine.auth.domain.QAuthor author;
public final StringPath color = createString("color");
public final MapPath> consumedTokens = this.>createMap("consumedTokens", String.class, Integer.class, NumberPath.class);
public final DateTimePath creationDate = createDateTime("creationDate", java.time.LocalDateTime.class);
public final MapPath dataSet = this.createMap("dataSet", String.class, DataField.class, QDataField.class);
public final SetPath enabledRoles = this.createSet("enabledRoles", String.class, StringPath.class, PathInits.DIRECT2);
public final StringPath icon = createString("icon");
public final ListPath, com.netgrif.application.engine.petrinet.domain.dataset.QField> immediateData = this., com.netgrif.application.engine.petrinet.domain.dataset.QField>createList("immediateData", com.netgrif.application.engine.petrinet.domain.dataset.Field.class, com.netgrif.application.engine.petrinet.domain.dataset.QField.class, PathInits.DIRECT2);
public final SetPath immediateDataFields = this.createSet("immediateDataFields", String.class, StringPath.class, PathInits.DIRECT2);
public final DateTimePath lastModified = createDateTime("lastModified", java.time.LocalDateTime.class);
public final ListPath negativeViewRoles = this.createList("negativeViewRoles", String.class, StringPath.class, PathInits.DIRECT2);
public final ListPath negativeViewUsers = this.createList("negativeViewUsers", String.class, StringPath.class, PathInits.DIRECT2);
public final MapPath, SimplePath>> permissions = this., SimplePath>>createMap("permissions", String.class, java.util.Map.class, SimplePath.class);
public final com.netgrif.application.engine.petrinet.domain.QPetriNet petriNet;
public final StringPath petriNetId = createString("petriNetId");
// custom
public final org.bson.types.QObjectId petriNetObjectId = new org.bson.types.QObjectId(forProperty("petriNetObjectId"));
public final StringPath processIdentifier = createString("processIdentifier");
public final StringPath stringId = createString("stringId");
public final SetPath tasks = this.createSet("tasks", TaskPair.class, QTaskPair.class, PathInits.DIRECT2);
public final StringPath title = createString("title");
public final StringPath uriNodeId = createString("uriNodeId");
public final MapPath, SimplePath>> userRefs = this., SimplePath>>createMap("userRefs", String.class, java.util.Map.class, SimplePath.class);
public final MapPath, SimplePath>> users = this., SimplePath>>createMap("users", String.class, java.util.Map.class, SimplePath.class);
public final ListPath viewRoles = this.createList("viewRoles", String.class, StringPath.class, PathInits.DIRECT2);
public final ListPath viewUserRefs = this.createList("viewUserRefs", String.class, StringPath.class, PathInits.DIRECT2);
public final ListPath viewUsers = this.createList("viewUsers", String.class, StringPath.class, PathInits.DIRECT2);
public final StringPath visualId = createString("visualId");
public QCase(String variable) {
this(Case.class, forVariable(variable), INITS);
}
public QCase(Path extends Case> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QCase(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QCase(PathMetadata metadata, PathInits inits) {
this(Case.class, metadata, inits);
}
public QCase(Class extends Case> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._id = inits.isInitialized("_id") ? new org.bson.types.QObjectId(forProperty("_id")) : null;
this.author = inits.isInitialized("author") ? new com.netgrif.application.engine.auth.domain.QAuthor(forProperty("author")) : null;
this.petriNet = inits.isInitialized("petriNet") ? new com.netgrif.application.engine.petrinet.domain.QPetriNet(forProperty("petriNet"), inits.get("petriNet")) : null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy