be.personify.iam.model.vault.QWorkflowRequest 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;
/**
* QWorkflowRequest is a Querydsl query type for WorkflowRequest
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QWorkflowRequest extends EntityPathBase {
private static final long serialVersionUID = -25986428L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QWorkflowRequest workflowRequest = new QWorkflowRequest("workflowRequest");
public final be.personify.iam.model.util.QPersisted _super = new be.personify.iam.model.util.QPersisted(this);
public final EnumPath conceptAction = createEnum("conceptAction", be.personify.iam.model.util.ConceptAction.class);
public final StringPath conceptHref = createString("conceptHref");
public final StringPath conceptString = createString("conceptString");
public final EnumPath conceptType = createEnum("conceptType", be.personify.iam.model.ConceptType.class);
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final NumberPath id = createNumber("id", Long.class);
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final QIdentity treatedBy;
public final EnumPath workflowStatus = createEnum("workflowStatus", be.personify.iam.model.util.WorkflowStatus.class);
public final ListPath workflowTasks = this.createList("workflowTasks", WorkflowTask.class, QWorkflowTask.class, PathInits.DIRECT2);
public QWorkflowRequest(String variable) {
this(WorkflowRequest.class, forVariable(variable), INITS);
}
public QWorkflowRequest(Path extends WorkflowRequest> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QWorkflowRequest(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QWorkflowRequest(PathMetadata metadata, PathInits inits) {
this(WorkflowRequest.class, metadata, inits);
}
public QWorkflowRequest(Class extends WorkflowRequest> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.treatedBy = inits.isInitialized("treatedBy") ? new QIdentity(forProperty("treatedBy"), inits.get("treatedBy")) : null;
}
}