be.personify.iam.model.vault.QEntitlementAssignment 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;
/**
* QEntitlementAssignment is a Querydsl query type for EntitlementAssignment
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QEntitlementAssignment extends EntityPathBase {
private static final long serialVersionUID = 463196558L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QEntitlementAssignment entitlementAssignment = new QEntitlementAssignment("entitlementAssignment");
public final be.personify.iam.model.util.QConcept _super;
public final BooleanPath active = createBoolean("active");
//inherited
public final EnumPath conceptState;
//inherited
public final StringPath conceptStateDetails;
//inherited
public final EnumPath conceptType;
//inherited
public final StringPath createdBy;
//inherited
public final DateTimePath creationDate;
public final DateTimePath endDate = createDateTime("endDate", java.util.Date.class);
public final QEntitlement entitlement;
public final ListPath entitlementPropertyValues = this.createList("entitlementPropertyValues", EntitlementPropertyValue.class, QEntitlementPropertyValue.class, PathInits.DIRECT2);
//inherited
public final NumberPath id;
//inherited
public final DateTimePath lastCertificationDate;
// inherited
public final QIdentity lastCertifier;
//inherited
public final DateTimePath modificationDate;
//inherited
public final StringPath modifiedBy;
public final QOrganisationAssignment organisationAssignment;
public final DateTimePath startDate = createDateTime("startDate", java.util.Date.class);
public QEntitlementAssignment(String variable) {
this(EntitlementAssignment.class, forVariable(variable), INITS);
}
public QEntitlementAssignment(Path extends EntitlementAssignment> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QEntitlementAssignment(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QEntitlementAssignment(PathMetadata metadata, PathInits inits) {
this(EntitlementAssignment.class, metadata, inits);
}
public QEntitlementAssignment(Class extends EntitlementAssignment> 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.entitlement = inits.isInitialized("entitlement") ? new QEntitlement(forProperty("entitlement"), inits.get("entitlement")) : null;
this.id = _super.id;
this.lastCertificationDate = _super.lastCertificationDate;
this.lastCertifier = _super.lastCertifier;
this.modificationDate = _super.modificationDate;
this.modifiedBy = _super.modifiedBy;
this.organisationAssignment = inits.isInitialized("organisationAssignment") ? new QOrganisationAssignment(forProperty("organisationAssignment"), inits.get("organisationAssignment")) : null;
}
}