com.foreach.across.modules.oauth2.business.QOAuth2ClientScope Maven / Gradle / Ivy
package com.foreach.across.modules.oauth2.business;
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;
/**
* QOAuth2ClientScope is a Querydsl query type for OAuth2ClientScope
*/
@Generated("com.querydsl.codegen.EntitySerializer")
public class QOAuth2ClientScope extends EntityPathBase {
private static final long serialVersionUID = 1077868558L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QOAuth2ClientScope oAuth2ClientScope = new QOAuth2ClientScope("oAuth2ClientScope");
public final BooleanPath autoApprove = createBoolean("autoApprove");
public final QOAuth2ClientScopeId id;
public final BooleanPath new$ = createBoolean("new");
public QOAuth2ClientScope(String variable) {
this(OAuth2ClientScope.class, forVariable(variable), INITS);
}
public QOAuth2ClientScope(Path extends OAuth2ClientScope> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QOAuth2ClientScope(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QOAuth2ClientScope(PathMetadata metadata, PathInits inits) {
this(OAuth2ClientScope.class, metadata, inits);
}
public QOAuth2ClientScope(Class extends OAuth2ClientScope> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.id = inits.isInitialized("id") ? new QOAuth2ClientScopeId(forProperty("id"), inits.get("id")) : null;
}
}