com.netgrif.application.engine.auth.domain.QAbstractUser 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;
/**
* QAbstractUser is a Querydsl query type for AbstractUser
*/
@Generated("com.querydsl.codegen.DefaultEmbeddableSerializer")
public class QAbstractUser extends BeanPath {
private static final long serialVersionUID = 243645033L;
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 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 QAbstractUser(String variable) {
super(AbstractUser.class, forVariable(variable));
}
public QAbstractUser(Path extends AbstractUser> path) {
super(path.getType(), path.getMetadata());
}
public QAbstractUser(PathMetadata metadata) {
super(AbstractUser.class, metadata);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy