com.capitalone.dashboard.model.QUserEntitlements 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;
/**
* QUserEntitlements is a Querydsl query type for UserEntitlements
*/
@Generated("com.querydsl.codegen.EntitySerializer")
public class QUserEntitlements extends EntityPathBase {
private static final long serialVersionUID = -1747846093L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QUserEntitlements userEntitlements = new QUserEntitlements("userEntitlements");
public final QBaseModel _super;
public final EnumPath authType = createEnum("authType", AuthType.class);
//inherited
public final StringPath clientReference;
public final StringPath entitlements = createString("entitlements");
public final StringPath entitlementType = createString("entitlementType");
// inherited
public final org.bson.types.QObjectId id;
//inherited
public final DateTimePath upsertTime;
public final StringPath username = createString("username");
public QUserEntitlements(String variable) {
this(UserEntitlements.class, forVariable(variable), INITS);
}
public QUserEntitlements(Path extends UserEntitlements> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QUserEntitlements(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QUserEntitlements(PathMetadata metadata, PathInits inits) {
this(UserEntitlements.class, metadata, inits);
}
public QUserEntitlements(Class extends UserEntitlements> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new QBaseModel(type, metadata, inits);
this.clientReference = _super.clientReference;
this.id = _super.id;
this.upsertTime = _super.upsertTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy