be.personify.iam.model.vault.QCampaignEntry 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;
/**
* QCampaignEntry is a Querydsl query type for CampaignEntry
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QCampaignEntry extends EntityPathBase {
private static final long serialVersionUID = -2040526090L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QCampaignEntry campaignEntry = new QCampaignEntry("campaignEntry");
public final be.personify.iam.model.util.QPersisted _super = new be.personify.iam.model.util.QPersisted(this);
public final QIdentity actor;
public final StringPath approvalRole = createString("approvalRole");
public final BooleanPath approvalRoleOrganisationScope = createBoolean("approvalRoleOrganisationScope");
public final QCertificationCampaign certificationCampaign;
public final be.personify.iam.model.util.QConcept concept;
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final QEntitlement entitlement;
public final BooleanPath executed = createBoolean("executed");
public final DateTimePath executedAt = createDateTime("executedAt", 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 QOrganisation organisation;
public final EnumPath status = createEnum("status", CampaignEntryStatus.class);
public final DateTimePath statusSetAt = createDateTime("statusSetAt", java.util.Date.class);
public QCampaignEntry(String variable) {
this(CampaignEntry.class, forVariable(variable), INITS);
}
public QCampaignEntry(Path extends CampaignEntry> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QCampaignEntry(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QCampaignEntry(PathMetadata metadata, PathInits inits) {
this(CampaignEntry.class, metadata, inits);
}
public QCampaignEntry(Class extends CampaignEntry> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.actor = inits.isInitialized("actor") ? new QIdentity(forProperty("actor"), inits.get("actor")) : null;
this.certificationCampaign = inits.isInitialized("certificationCampaign") ? new QCertificationCampaign(forProperty("certificationCampaign"), inits.get("certificationCampaign")) : null;
this.concept = inits.isInitialized("concept") ? new be.personify.iam.model.util.QConcept(forProperty("concept"), inits.get("concept")) : null;
this.entitlement = inits.isInitialized("entitlement") ? new QEntitlement(forProperty("entitlement"), inits.get("entitlement")) : null;
this.identity = inits.isInitialized("identity") ? new QIdentity(forProperty("identity"), inits.get("identity")) : null;
this.organisation = inits.isInitialized("organisation") ? new QOrganisation(forProperty("organisation"), inits.get("organisation")) : null;
}
}