All Downloads are FREE. Search and download functionalities are using the official Maven repository.

be.personify.iam.model.provisioning.QAccount Maven / Gradle / Ivy

There is a newer version: 1.5.2.RELEASE
Show newest version
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 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 type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this.targetSystem = inits.isInitialized("targetSystem") ? new QTargetSystem(forProperty("targetSystem"), inits.get("targetSystem")) : null;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy