com.netgrif.application.engine.auth.domain.QAnonymousUser Maven / Gradle / Ivy
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;
/**
* QAnonymousUser is a Querydsl query type for AnonymousUser
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QAnonymousUser extends EntityPathBase {
private static final long serialVersionUID = 2076177916L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QAnonymousUser anonymousUser = new QAnonymousUser("anonymousUser");
public final QUser _super;
// inherited
public final org.bson.types.QObjectId _id;
//inherited
public final BooleanPath active;
//inherited
public final SetPath authorities;
//inherited
public final StringPath avatar;
//inherited
public final StringPath email;
//inherited
public final DateTimePath expirationDate;
//inherited
public final StringPath fullName;
//inherited
public final StringPath id;
// inherited
public final QIUser impersonated;
//inherited
public final BooleanPath impersonating;
//inherited
public final StringPath name;
//inherited
public final SetPath nextGroups;
//inherited
public final StringPath password;
//inherited
public final SetPath processRoles;
// inherited
public final QIUser selfOrImpersonated;
//inherited
public final EnumPath state;
//inherited
public final StringPath stringId;
//inherited
public final StringPath surname;
//inherited
public final StringPath telNumber;
//inherited
public final StringPath token;
public QAnonymousUser(String variable) {
this(AnonymousUser.class, forVariable(variable), INITS);
}
public QAnonymousUser(Path extends AnonymousUser> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QAnonymousUser(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QAnonymousUser(PathMetadata metadata, PathInits inits) {
this(AnonymousUser.class, metadata, inits);
}
public QAnonymousUser(Class extends AnonymousUser> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new QUser(type, metadata, inits);
this._id = _super._id;
this.active = _super.active;
this.authorities = _super.authorities;
this.avatar = _super.avatar;
this.email = _super.email;
this.expirationDate = _super.expirationDate;
this.fullName = _super.fullName;
this.id = _super.id;
this.impersonated = _super.impersonated;
this.impersonating = _super.impersonating;
this.name = _super.name;
this.nextGroups = _super.nextGroups;
this.password = _super.password;
this.processRoles = _super.processRoles;
this.selfOrImpersonated = _super.selfOrImpersonated;
this.state = _super.state;
this.stringId = _super.stringId;
this.surname = _super.surname;
this.telNumber = _super.telNumber;
this.token = _super.token;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy