All Downloads are FREE. Search and download functionalities are using the official Maven repository.

be.personify.iam.model.authentication.QRuleCondition Maven / Gradle / Ivy

There is a newer version: 1.5.2.RELEASE
Show newest version
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;


/**
 * QRuleCondition is a Querydsl query type for RuleCondition
 */
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QRuleCondition extends EntityPathBase {

    private static final long serialVersionUID = -1217830439L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QRuleCondition ruleCondition = new QRuleCondition("ruleCondition");

    public final be.personify.iam.model.util.QPersisted _super = new be.personify.iam.model.util.QPersisted(this);

    public final StringPath conditionExpression = createString("conditionExpression");

    //inherited
    public final StringPath createdBy = _super.createdBy;

    //inherited
    public final DateTimePath creationDate = _super.creationDate;

    public final NumberPath id = createNumber("id", Long.class);

    //inherited
    public final DateTimePath modificationDate = _super.modificationDate;

    //inherited
    public final StringPath modifiedBy = _super.modifiedBy;

    public final QRule rule;

    public final EnumPath ruleExpressionTypeEvaluator = createEnum("ruleExpressionTypeEvaluator", RuleExpressionTypeEvaluator.class);

    public QRuleCondition(String variable) {
        this(RuleCondition.class, forVariable(variable), INITS);
    }

    public QRuleCondition(Path path) {
        this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
    }

    public QRuleCondition(PathMetadata metadata) {
        this(metadata, PathInits.getFor(metadata, INITS));
    }

    public QRuleCondition(PathMetadata metadata, PathInits inits) {
        this(RuleCondition.class, metadata, inits);
    }

    public QRuleCondition(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this.rule = inits.isInitialized("rule") ? new QRule(forProperty("rule"), inits.get("rule")) : null;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy