All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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 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 type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this.id = inits.isInitialized("id") ? new QOAuth2ClientScopeId(forProperty("id"), inits.get("id")) : null;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy