be.personify.iam.model.util.QTicketFile 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;
/**
* QTicketFile is a Querydsl query type for TicketFile
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QTicketFile extends EntityPathBase {
private static final long serialVersionUID = -812386108L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QTicketFile ticketFile = new QTicketFile("ticketFile");
public final QPersisted _super = new QPersisted(this);
public final ArrayPath content = createArray("content", byte[].class);
//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 final QTicket ticket;
public QTicketFile(String variable) {
this(TicketFile.class, forVariable(variable), INITS);
}
public QTicketFile(Path extends TicketFile> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QTicketFile(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QTicketFile(PathMetadata metadata, PathInits inits) {
this(TicketFile.class, metadata, inits);
}
public QTicketFile(Class extends TicketFile> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.ticket = inits.isInitialized("ticket") ? new QTicket(forProperty("ticket")) : null;
}
}