be.personify.iam.model.vault.QEntitlementPropertyValue 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;
/**
* QEntitlementPropertyValue is a Querydsl query type for EntitlementPropertyValue
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QEntitlementPropertyValue extends EntityPathBase {
private static final long serialVersionUID = 809587259L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QEntitlementPropertyValue entitlementPropertyValue = new QEntitlementPropertyValue("entitlementPropertyValue");
public final be.personify.iam.model.util.QPersisted _super = new be.personify.iam.model.util.QPersisted(this);
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final QEntitlementAssignment entitlementAssignment;
public final QEntitlementProperty entitlementProperty;
public final NumberPath id = createNumber("id", Long.class);
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final ListPath values = this.createList("values", String.class, StringPath.class, PathInits.DIRECT2);
public QEntitlementPropertyValue(String variable) {
this(EntitlementPropertyValue.class, forVariable(variable), INITS);
}
public QEntitlementPropertyValue(Path extends EntitlementPropertyValue> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QEntitlementPropertyValue(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QEntitlementPropertyValue(PathMetadata metadata, PathInits inits) {
this(EntitlementPropertyValue.class, metadata, inits);
}
public QEntitlementPropertyValue(Class extends EntitlementPropertyValue> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.entitlementAssignment = inits.isInitialized("entitlementAssignment") ? new QEntitlementAssignment(forProperty("entitlementAssignment"), inits.get("entitlementAssignment")) : null;
this.entitlementProperty = inits.isInitialized("entitlementProperty") ? new QEntitlementProperty(forProperty("entitlementProperty"), inits.get("entitlementProperty")) : null;
}
}