be.personify.iam.model.vault.QIdentity 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;
/**
* QIdentity is a Querydsl query type for Identity
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QIdentity extends EntityPathBase {
private static final long serialVersionUID = 1901291146L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QIdentity identity = new QIdentity("identity");
public final be.personify.iam.model.util.QConcept _super;
public final BooleanPath active = createBoolean("active");
public final StringPath code = createString("code");
//inherited
public final EnumPath conceptState;
//inherited
public final StringPath conceptStateDetails;
//inherited
public final EnumPath conceptType;
public final BooleanPath confirmedEmail = createBoolean("confirmedEmail");
public final BooleanPath confirmedMobile = createBoolean("confirmedMobile");
public final ListPath consents = this.createList("consents", Consent.class, QConsent.class, PathInits.DIRECT2);
//inherited
public final StringPath createdBy;
//inherited
public final DateTimePath creationDate;
public final ListPath devices = this.createList("devices", Device.class, QDevice.class, PathInits.DIRECT2);
public final StringPath email = createString("email");
public final BooleanPath enableMultiFactorAuthentication = createBoolean("enableMultiFactorAuthentication");
public final StringPath firstName = createString("firstName");
public final EnumPath gender = createEnum("gender", Gender.class);
public final BooleanPath haveToSync = createBoolean("haveToSync");
//inherited
public final NumberPath id;
public final QIdentityType identityType;
//inherited
public final DateTimePath lastCertificationDate;
// inherited
public final QIdentity lastCertifier;
public final DateTimePath lastLoginDate = createDateTime("lastLoginDate", java.util.Date.class);
public final StringPath lastName = createString("lastName");
public final StringPath locale = createString("locale");
public final StringPath mobileNumber = createString("mobileNumber");
//inherited
public final DateTimePath modificationDate;
//inherited
public final StringPath modifiedBy;
public final EnumPath multiFactorAuthenticationType = createEnum("multiFactorAuthenticationType", MultiFactorAuthenticationType.class);
public final ListPath notifications = this.createList("notifications", Notification.class, QNotification.class, PathInits.DIRECT2);
public final ListPath organisationAssignments = this.createList("organisationAssignments", OrganisationAssignment.class, QOrganisationAssignment.class, PathInits.DIRECT2);
public final StringPath password = createString("password");
public QIdentity(String variable) {
this(Identity.class, forVariable(variable), INITS);
}
public QIdentity(Path extends Identity> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QIdentity(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QIdentity(PathMetadata metadata, PathInits inits) {
this(Identity.class, metadata, inits);
}
public QIdentity(Class extends Identity> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new be.personify.iam.model.util.QConcept(type, metadata, inits);
this.conceptState = _super.conceptState;
this.conceptStateDetails = _super.conceptStateDetails;
this.conceptType = _super.conceptType;
this.createdBy = _super.createdBy;
this.creationDate = _super.creationDate;
this.id = _super.id;
this.identityType = inits.isInitialized("identityType") ? new QIdentityType(forProperty("identityType"), inits.get("identityType")) : null;
this.lastCertificationDate = _super.lastCertificationDate;
this.lastCertifier = _super.lastCertifier;
this.modificationDate = _super.modificationDate;
this.modifiedBy = _super.modifiedBy;
}
}