be.personify.iam.model.vault.QConsent 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;
/**
* QConsent is a Querydsl query type for Consent
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QConsent extends EntityPathBase {
private static final long serialVersionUID = 1987043534L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QConsent consent = new QConsent("consent");
public final be.personify.iam.model.util.QPersisted _super = new be.personify.iam.model.util.QPersisted(this);
public final EnumPath choice = createEnum("choice", ConsentChoice.class);
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final ListPath dataParts = this.createList("dataParts", String.class, StringPath.class, PathInits.DIRECT2);
public final DateTimePath endDate = createDateTime("endDate", java.util.Date.class);
public final NumberPath id = createNumber("id", Long.class);
public final QIdentity identity;
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final QProcessingPurpose processingPurpose;
public final DateTimePath startDate = createDateTime("startDate", java.util.Date.class);
public QConsent(String variable) {
this(Consent.class, forVariable(variable), INITS);
}
public QConsent(Path extends Consent> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QConsent(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QConsent(PathMetadata metadata, PathInits inits) {
this(Consent.class, metadata, inits);
}
public QConsent(Class extends Consent> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.identity = inits.isInitialized("identity") ? new QIdentity(forProperty("identity"), inits.get("identity")) : null;
this.processingPurpose = inits.isInitialized("processingPurpose") ? new QProcessingPurpose(forProperty("processingPurpose")) : null;
}
}