be.personify.iam.model.vault.QTransformer 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.vault;
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;
/**
* QTransformer is a Querydsl query type for Transformer
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QTransformer extends EntityPathBase {
private static final long serialVersionUID = 249754573L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QTransformer transformer = new QTransformer("transformer");
public final be.personify.iam.model.util.QConcept _super;
public final StringPath className = createString("className");
//inherited
public final EnumPath conceptState;
//inherited
public final StringPath conceptStateDetails;
//inherited
public final EnumPath conceptType;
public final MapPath configuration = this.createMap("configuration", String.class, String.class, StringPath.class);
//inherited
public final StringPath createdBy;
//inherited
public final DateTimePath creationDate;
public final StringPath description = createString("description");
//inherited
public final NumberPath id;
//inherited
public final DateTimePath lastCertificationDate;
// inherited
public final QIdentity lastCertifier;
//inherited
public final DateTimePath modificationDate;
//inherited
public final StringPath modifiedBy;
public final StringPath name = createString("name");
public QTransformer(String variable) {
this(Transformer.class, forVariable(variable), INITS);
}
public QTransformer(Path extends Transformer> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QTransformer(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QTransformer(PathMetadata metadata, PathInits inits) {
this(Transformer.class, metadata, inits);
}
public QTransformer(Class extends Transformer> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new be.personify.iam.model.util.QConcept(type, metadata, inits);
this.conceptState = _super.conceptState;
this.conceptStateDetails = _super.conceptStateDetails;
this.conceptType = _super.conceptType;
this.createdBy = _super.createdBy;
this.creationDate = _super.creationDate;
this.id = _super.id;
this.lastCertificationDate = _super.lastCertificationDate;
this.lastCertifier = _super.lastCertifier;
this.modificationDate = _super.modificationDate;
this.modifiedBy = _super.modifiedBy;
}
}