com.foreach.across.modules.oauth2.business.QOAuth2Scope 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;
/**
* QOAuth2Scope is a Querydsl query type for OAuth2Scope
*/
@Generated("com.mysema.query.codegen.EntitySerializer")
public class QOAuth2Scope extends EntityPathBase {
private static final long serialVersionUID = -1289032487L;
public static final QOAuth2Scope oAuth2Scope = new QOAuth2Scope("oAuth2Scope");
public final NumberPath id = createNumber("id", Long.class);
public final StringPath name = createString("name");
public final SetPath oAuth2ClientScopes = this.createSet("oAuth2ClientScopes", OAuth2ClientScope.class, QOAuth2ClientScope.class, PathInits.DIRECT2);
public QOAuth2Scope(String variable) {
super(OAuth2Scope.class, forVariable(variable));
}
public QOAuth2Scope(Path extends OAuth2Scope> path) {
super(path.getType(), path.getMetadata());
}
public QOAuth2Scope(PathMetadata> metadata) {
super(OAuth2Scope.class, metadata);
}
}