com.foreach.across.modules.oauth2.business.QOAuth2ClientScopeId 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;
/**
* QOAuth2ClientScopeId is a Querydsl query type for OAuth2ClientScopeId
*/
@Generated("com.querydsl.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 extends OAuth2ClientScopeId> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QOAuth2ClientScopeId(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QOAuth2ClientScopeId(PathMetadata metadata, PathInits inits) {
this(OAuth2ClientScopeId.class, metadata, inits);
}
public QOAuth2ClientScopeId(Class extends OAuth2ClientScopeId> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.oAuth2Client = inits.isInitialized("oAuth2Client") ? new QOAuth2Client(forProperty("oAuth2Client"), inits.get("oAuth2Client")) : null;
this.oAuth2Scope = inits.isInitialized("oAuth2Scope") ? new QOAuth2Scope(forProperty("oAuth2Scope")) : null;
}
}