be.personify.iam.model.authentication.QSession Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of personify-model Show documentation
Show all versions of personify-model Show documentation
a possible model for personify
package be.personify.iam.model.authentication;
import static com.querydsl.core.types.PathMetadataFactory.*;
import com.querydsl.core.types.dsl.*;
import com.querydsl.core.types.PathMetadata;
import javax.annotation.processing.Generated;
import com.querydsl.core.types.Path;
import com.querydsl.core.types.dsl.PathInits;
/**
* QSession is a Querydsl query type for Session
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QSession extends EntityPathBase {
private static final long serialVersionUID = 1041342064L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QSession session = new QSession("session");
public final be.personify.iam.model.util.QPersisted _super = new be.personify.iam.model.util.QPersisted(this);
public final QAccessToken accessToken;
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final NumberPath id = createNumber("id", Long.class);
public final StringPath identifier = createString("identifier");
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final StringPath tokenType = createString("tokenType");
public QSession(String variable) {
this(Session.class, forVariable(variable), INITS);
}
public QSession(Path extends Session> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QSession(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QSession(PathMetadata metadata, PathInits inits) {
this(Session.class, metadata, inits);
}
public QSession(Class extends Session> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.accessToken = inits.isInitialized("accessToken") ? new QAccessToken(forProperty("accessToken"), inits.get("accessToken")) : null;
}
}