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

com.netgrif.application.engine.rules.domain.QStoredRule Maven / Gradle / Ivy

Go to download

System provides workflow management functions including user, role and data management.

There is a newer version: 6.3.3
Show newest version
package com.netgrif.application.engine.rules.domain;

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;


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

    private static final long serialVersionUID = -1767207686L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QStoredRule storedRule = new QStoredRule("storedRule");

    public final org.bson.types.QObjectId _id;

    public final DateTimePath creationDate = createDateTime("creationDate", java.time.LocalDateTime.class);

    public final DatePath dateEffective = createDate("dateEffective", java.time.LocalDate.class);

    public final DatePath dateExpires = createDate("dateExpires", java.time.LocalDate.class);

    public final BooleanPath enabled = createBoolean("enabled");

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

    public final DateTimePath lastUpdate = createDateTime("lastUpdate", java.time.LocalDateTime.class);

    public final NumberPath salience = createNumber("salience", Integer.class);

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

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

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

    public QStoredRule(String variable) {
        this(StoredRule.class, forVariable(variable), INITS);
    }

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

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

    public QStoredRule(PathMetadata metadata, PathInits inits) {
        this(StoredRule.class, metadata, inits);
    }

    public QStoredRule(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this._id = inits.isInitialized("_id") ? new org.bson.types.QObjectId(forProperty("_id")) : null;
    }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy