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

com.netgrif.application.engine.auth.domain.QAbstractUser 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.auth.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;


/**
 * QAbstractUser is a Querydsl query type for AbstractUser
 */
@Generated("com.querydsl.codegen.DefaultEmbeddableSerializer")
public class QAbstractUser extends BeanPath {

    private static final long serialVersionUID = 243645033L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QAbstractUser abstractUser = new QAbstractUser("abstractUser");

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

    public final SetPath authorities = this.createSet("authorities", Authority.class, QAuthority.class, PathInits.DIRECT2);

    public final QIUser impersonated;

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

    public final SetPath nextGroups = this.createSet("nextGroups", String.class, StringPath.class, PathInits.DIRECT2);

    public final SetPath processRoles = this.createSet("processRoles", com.netgrif.application.engine.petrinet.domain.roles.ProcessRole.class, com.netgrif.application.engine.petrinet.domain.roles.QProcessRole.class, PathInits.DIRECT2);

    public final QIUser selfOrImpersonated;

    public final EnumPath state = createEnum("state", UserState.class);

    public QAbstractUser(String variable) {
        this(AbstractUser.class, forVariable(variable), INITS);
    }

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

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

    public QAbstractUser(PathMetadata metadata, PathInits inits) {
        this(AbstractUser.class, metadata, inits);
    }

    public QAbstractUser(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this.impersonated = inits.isInitialized("impersonated") ? new QIUser(forProperty("impersonated"), inits.get("impersonated")) : null;
        this.selfOrImpersonated = inits.isInitialized("selfOrImpersonated") ? new QIUser(forProperty("selfOrImpersonated"), inits.get("selfOrImpersonated")) : null;
    }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy