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

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


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

    private static final long serialVersionUID = -1376679944L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QIUser iUser = new QIUser("iUser");

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

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

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

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

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

    public final QIUser impersonated;

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

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

    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 final StringPath stringId = createString("stringId");

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

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

    public QIUser(String variable) {
        this(IUser.class, forVariable(variable), INITS);
    }

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

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

    public QIUser(PathMetadata metadata, PathInits inits) {
        this(IUser.class, metadata, inits);
    }

    public QIUser(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