be.personify.iam.model.util.QConcept 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.util;
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;
/**
* QConcept is a Querydsl query type for Concept
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QConcept extends EntityPathBase {
private static final long serialVersionUID = -1636923956L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QConcept concept = new QConcept("concept");
public final QPersisted _super = new QPersisted(this);
public final EnumPath conceptState = createEnum("conceptState", ConceptState.class);
public final StringPath conceptStateDetails = createString("conceptStateDetails");
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);
public final DateTimePath lastCertificationDate = createDateTime("lastCertificationDate", java.util.Date.class);
public final be.personify.iam.model.vault.QIdentity lastCertifier;
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public QConcept(String variable) {
this(Concept.class, forVariable(variable), INITS);
}
public QConcept(Path extends Concept> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QConcept(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QConcept(PathMetadata metadata, PathInits inits) {
this(Concept.class, metadata, inits);
}
public QConcept(Class extends Concept> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.lastCertifier = inits.isInitialized("lastCertifier") ? new be.personify.iam.model.vault.QIdentity(forProperty("lastCertifier"), inits.get("lastCertifier")) : null;
}
}