be.personify.iam.model.util.QArticleImage 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.util;
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;
/**
* QArticleImage is a Querydsl query type for ArticleImage
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QArticleImage extends EntityPathBase {
private static final long serialVersionUID = -1327822559L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QArticleImage articleImage = new QArticleImage("articleImage");
public final QPersisted _super = new QPersisted(this);
public final QArticle article;
public final ArrayPath content = createArray("content", byte[].class);
public final StringPath contentType = createString("contentType");
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final StringPath description = createString("description");
public final NumberPath id = createNumber("id", Long.class);
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final StringPath name = createString("name");
public QArticleImage(String variable) {
this(ArticleImage.class, forVariable(variable), INITS);
}
public QArticleImage(Path extends ArticleImage> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QArticleImage(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QArticleImage(PathMetadata metadata, PathInits inits) {
this(ArticleImage.class, metadata, inits);
}
public QArticleImage(Class extends ArticleImage> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.article = inits.isInitialized("article") ? new QArticle(forProperty("article"), inits.get("article")) : null;
}
}