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

com.foreach.across.modules.oauth2.business.QOAuth2ClientScopeId 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;


/**
 * QOAuth2ClientScopeId is a Querydsl query type for OAuth2ClientScopeId
 */
@Generated("com.mysema.query.codegen.EmbeddableSerializer")
public class QOAuth2ClientScopeId extends BeanPath {

    private static final long serialVersionUID = 744568265L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QOAuth2ClientScopeId oAuth2ClientScopeId = new QOAuth2ClientScopeId("oAuth2ClientScopeId");

    public final QOAuth2Client oAuth2Client;

    public final QOAuth2Scope oAuth2Scope;

    public QOAuth2ClientScopeId(String variable) {
        this(OAuth2ClientScopeId.class, forVariable(variable), INITS);
    }

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

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

    public QOAuth2ClientScopeId(PathMetadata metadata, PathInits inits) {
        this(OAuth2ClientScopeId.class, metadata, inits);
    }

    public QOAuth2ClientScopeId(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this.oAuth2Client = inits.isInitialized("oAuth2Client") ? new QOAuth2Client(forProperty("oAuth2Client")) : null;
        this.oAuth2Scope = inits.isInitialized("oAuth2Scope") ? new QOAuth2Scope(forProperty("oAuth2Scope")) : null;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy