be.personify.iam.model.authentication.QRule 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.authentication;
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;
/**
* QRule is a Querydsl query type for Rule
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QRule extends EntityPathBase {
private static final long serialVersionUID = -909403806L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QRule rule = new QRule("rule");
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 EnumPath decision = createEnum("decision", be.personify.util.Decision.class);
public final NumberPath id = createNumber("id", Long.class);
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final QPermission permission;
public final StringPath role = createString("role");
public final ListPath ruleConditions = this.createList("ruleConditions", RuleCondition.class, QRuleCondition.class, PathInits.DIRECT2);
public QRule(String variable) {
this(Rule.class, forVariable(variable), INITS);
}
public QRule(Path extends Rule> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QRule(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QRule(PathMetadata metadata, PathInits inits) {
this(Rule.class, metadata, inits);
}
public QRule(Class extends Rule> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.permission = inits.isInitialized("permission") ? new QPermission(forProperty("permission")) : null;
}
}