com.capitalone.dashboard.model.QUserInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core package shared by API layer and Microservices
package com.capitalone.dashboard.model;
import static com.querydsl.core.types.PathMetadataFactory.*;
import com.querydsl.core.types.dsl.*;
import com.querydsl.core.types.PathMetadata;
import javax.annotation.Generated;
import com.querydsl.core.types.Path;
import com.querydsl.core.types.dsl.PathInits;
/**
* QUserInfo is a Querydsl query type for UserInfo
*/
@Generated("com.querydsl.codegen.EntitySerializer")
public class QUserInfo extends EntityPathBase {
private static final long serialVersionUID = 1365755131L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QUserInfo userInfo = new QUserInfo("userInfo");
public final CollectionPath> authorities = this.>createCollection("authorities", UserRole.class, EnumPath.class, PathInits.DIRECT2);
public final EnumPath authType = createEnum("authType", AuthType.class);
public final StringPath displayName = createString("displayName");
public final StringPath emailAddress = createString("emailAddress");
public final StringPath firstName = createString("firstName");
public final org.bson.types.QObjectId id;
public final StringPath lastName = createString("lastName");
public final StringPath middleName = createString("middleName");
public final StringPath username = createString("username");
public QUserInfo(String variable) {
this(UserInfo.class, forVariable(variable), INITS);
}
public QUserInfo(Path extends UserInfo> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QUserInfo(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QUserInfo(PathMetadata metadata, PathInits inits) {
this(UserInfo.class, metadata, inits);
}
public QUserInfo(Class extends UserInfo> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.id = inits.isInitialized("id") ? new org.bson.types.QObjectId(forProperty("id")) : null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy