be.personify.iam.model.gateway.QRequestHandler 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.gateway;
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;
/**
* QRequestHandler is a Querydsl query type for RequestHandler
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QRequestHandler extends EntityPathBase {
private static final long serialVersionUID = 2133140533L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QRequestHandler requestHandler = new QRequestHandler("requestHandler");
public final be.personify.iam.model.util.QPersisted _super = new be.personify.iam.model.util.QPersisted(this);
public final BooleanPath active = createBoolean("active");
public final StringPath className = createString("className");
public final MapPath configuration = this.createMap("configuration", String.class, String.class, StringPath.class);
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final NumberPath executionOrder = createNumber("executionOrder", Integer.class);
public final NumberPath id = createNumber("id", Long.class);
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final QSite site;
public QRequestHandler(String variable) {
this(RequestHandler.class, forVariable(variable), INITS);
}
public QRequestHandler(Path extends RequestHandler> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QRequestHandler(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QRequestHandler(PathMetadata metadata, PathInits inits) {
this(RequestHandler.class, metadata, inits);
}
public QRequestHandler(Class extends RequestHandler> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.site = inits.isInitialized("site") ? new QSite(forProperty("site")) : null;
}
}