be.personify.iam.model.vault.QDevice 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;
/**
* QDevice is a Querydsl query type for Device
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QDevice extends EntityPathBase {
private static final long serialVersionUID = -747563230L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QDevice device = new QDevice("device");
public final be.personify.iam.model.util.QConcept _super;
//inherited
public final EnumPath conceptState;
//inherited
public final StringPath conceptStateDetails;
//inherited
public final EnumPath conceptType;
//inherited
public final StringPath createdBy;
//inherited
public final DateTimePath creationDate;
public final StringPath deviceIdentifier = createString("deviceIdentifier");
public final EnumPath deviceType = createEnum("deviceType", DeviceType.class);
//inherited
public final NumberPath id;
public final QIdentity identity;
//inherited
public final DateTimePath lastCertificationDate;
// inherited
public final QIdentity lastCertifier;
public final be.personify.iam.model.util.location.QLocation location;
public final BooleanPath mobile = createBoolean("mobile");
//inherited
public final DateTimePath modificationDate;
//inherited
public final StringPath modifiedBy;
public final StringPath name = createString("name");
public QDevice(String variable) {
this(Device.class, forVariable(variable), INITS);
}
public QDevice(Path extends Device> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QDevice(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QDevice(PathMetadata metadata, PathInits inits) {
this(Device.class, metadata, inits);
}
public QDevice(Class extends Device> 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.identity = inits.isInitialized("identity") ? new QIdentity(forProperty("identity"), inits.get("identity")) : null;
this.lastCertificationDate = _super.lastCertificationDate;
this.lastCertifier = _super.lastCertifier;
this.location = inits.isInitialized("location") ? new be.personify.iam.model.util.location.QLocation(forProperty("location")) : null;
this.modificationDate = _super.modificationDate;
this.modifiedBy = _super.modifiedBy;
}
}