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.mysema.query.types.PathMetadataFactory.*;

import com.mysema.query.types.path.*;

import com.mysema.query.types.PathMetadata;
import javax.annotation.Generated;
import com.mysema.query.types.Path;
import com.mysema.query.types.path.PathInits;


/**
 * QOAuth2ClientScope is a Querydsl query type for OAuth2ClientScope
 */
@Generated("com.mysema.query.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 pk;

    public QOAuth2ClientScope(String variable) {
        this(OAuth2ClientScope.class, forVariable(variable), INITS);
    }

    public QOAuth2ClientScope(Path path) {
        this(path.getType(), path.getMetadata(), path.getMetadata().isRoot() ? INITS : PathInits.DEFAULT);
    }

    public QOAuth2ClientScope(PathMetadata metadata) {
        this(metadata, metadata.isRoot() ? INITS : PathInits.DEFAULT);
    }

    public QOAuth2ClientScope(PathMetadata metadata, PathInits inits) {
        this(OAuth2ClientScope.class, metadata, inits);
    }

    public QOAuth2ClientScope(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this.pk = inits.isInitialized("pk") ? new QOAuth2ClientScopeId(forProperty("pk"), inits.get("pk")) : null;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy