com.netgrif.application.engine.auth.domain.QIUser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of application-engine Show documentation
Show all versions of application-engine Show documentation
System provides workflow management functions including user, role and data management.
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;
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 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 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) {
super(IUser.class, forVariable(variable));
}
public QIUser(Path extends IUser> path) {
super(path.getType(), path.getMetadata());
}
public QIUser(PathMetadata metadata) {
super(IUser.class, metadata);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy