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

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


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

    private static final long serialVersionUID = 94524199L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QUser user = new QUser("user");

    public final QAbstractUser _super;

    public final org.bson.types.QObjectId _id;

    //inherited
    public final BooleanPath active;

    //inherited
    public final SetPath authorities;

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

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

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

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

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

    // inherited
    public final QIUser impersonated;

    //inherited
    public final BooleanPath impersonating;

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

    //inherited
    public final SetPath nextGroups;

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

    //inherited
    public final SetPath processRoles;

    // inherited
    public final QIUser selfOrImpersonated;

    //inherited
    public final EnumPath state;

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

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

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

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

    public QUser(String variable) {
        this(User.class, forVariable(variable), INITS);
    }

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

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

    public QUser(PathMetadata metadata, PathInits inits) {
        this(User.class, metadata, inits);
    }

    public QUser(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this._super = new QAbstractUser(type, metadata, inits);
        this._id = inits.isInitialized("_id") ? new org.bson.types.QObjectId(forProperty("_id")) : null;
        this.active = _super.active;
        this.authorities = _super.authorities;
        this.impersonated = _super.impersonated;
        this.impersonating = _super.impersonating;
        this.nextGroups = _super.nextGroups;
        this.processRoles = _super.processRoles;
        this.selfOrImpersonated = _super.selfOrImpersonated;
        this.state = _super.state;
    }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy