be.personify.iam.model.vault.QWorkflowTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of personify-model Show documentation
Show all versions of personify-model Show documentation
a possible model for personify
package be.personify.iam.model.vault;
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;
/**
* QWorkflowTask is a Querydsl query type for WorkflowTask
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QWorkflowTask extends EntityPathBase {
private static final long serialVersionUID = -1725515344L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QWorkflowTask workflowTask = new QWorkflowTask("workflowTask");
public final be.personify.iam.model.util.QPersisted _super = new be.personify.iam.model.util.QPersisted(this);
public final EnumPath action = createEnum("action", be.personify.iam.model.util.ConceptAction.class);
public final QIdentity assignee;
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final StringPath errorDetail = createString("errorDetail");
public final NumberPath id = createNumber("id", Long.class);
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final StringPath reason = createString("reason");
public final EnumPath taskStatus = createEnum("taskStatus", WorkflowTaskStatus.class);
public final EnumPath type = createEnum("type", be.personify.iam.model.ConceptType.class);
public final QWorkflowRequest workflowRequest;
public final EnumPath workflowState = createEnum("workflowState", be.personify.util.WorkflowState.class);
public QWorkflowTask(String variable) {
this(WorkflowTask.class, forVariable(variable), INITS);
}
public QWorkflowTask(Path extends WorkflowTask> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QWorkflowTask(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QWorkflowTask(PathMetadata metadata, PathInits inits) {
this(WorkflowTask.class, metadata, inits);
}
public QWorkflowTask(Class extends WorkflowTask> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.assignee = inits.isInitialized("assignee") ? new QIdentity(forProperty("assignee"), inits.get("assignee")) : null;
this.workflowRequest = inits.isInitialized("workflowRequest") ? new QWorkflowRequest(forProperty("workflowRequest"), inits.get("workflowRequest")) : null;
}
}