be.personify.iam.model.util.QScheduler 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;
/**
* QScheduler is a Querydsl query type for Scheduler
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QScheduler extends EntityPathBase {
private static final long serialVersionUID = -392854753L;
public static final QScheduler scheduler = new QScheduler("scheduler");
public final QPersisted _super = new QPersisted(this);
public final BooleanPath active = createBoolean("active");
public final StringPath className = createString("className");
public final StringPath configuration = createString("configuration");
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final StringPath crontab = createString("crontab");
public final StringPath executingInstance = createString("executingInstance");
public final NumberPath id = createNumber("id", Long.class);
public final StringPath lastError = createString("lastError");
public final DateTimePath lastTimeRun = createDateTime("lastTimeRun", java.util.Date.class);
public final DateTimePath lastTimeRunError = createDateTime("lastTimeRunError", java.util.Date.class);
public final DateTimePath lastTimeRunSuccess = createDateTime("lastTimeRunSuccess", java.util.Date.class);
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final StringPath name = createString("name");
public final EnumPath state = createEnum("state", SchedulerState.class);
public QScheduler(String variable) {
super(Scheduler.class, forVariable(variable));
}
public QScheduler(Path extends Scheduler> path) {
super(path.getType(), path.getMetadata());
}
public QScheduler(PathMetadata metadata) {
super(Scheduler.class, metadata);
}
}