be.personify.iam.model.provisioning.QAccount 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.provisioning;
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;
/**
* QAccount is a Querydsl query type for Account
*/
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QAccount extends EntityPathBase {
private static final long serialVersionUID = 502197628L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QAccount account = new QAccount("account");
public final be.personify.iam.model.util.QPersisted _super = new be.personify.iam.model.util.QPersisted(this);
public final StringPath accountId = createString("accountId");
//inherited
public final StringPath createdBy = _super.createdBy;
//inherited
public final DateTimePath creationDate = _super.creationDate;
public final NumberPath id = createNumber("id", Long.class);
public final StringPath identityHref = createString("identityHref");
//inherited
public final DateTimePath modificationDate = _super.modificationDate;
//inherited
public final StringPath modifiedBy = _super.modifiedBy;
public final ListPath provisionAttempts = this.createList("provisionAttempts", ProvisionAttempt.class, QProvisionAttempt.class, PathInits.DIRECT2);
public final QTargetSystem targetSystem;
public QAccount(String variable) {
this(Account.class, forVariable(variable), INITS);
}
public QAccount(Path extends Account> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QAccount(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QAccount(PathMetadata metadata, PathInits inits) {
this(Account.class, metadata, inits);
}
public QAccount(Class extends Account> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this.targetSystem = inits.isInitialized("targetSystem") ? new QTargetSystem(forProperty("targetSystem"), inits.get("targetSystem")) : null;
}
}