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

be.personify.iam.model.vault.QEntitlementProperty Maven / Gradle / Ivy

There is a newer version: 1.5.2.RELEASE
Show newest version
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;


/**
 * QEntitlementProperty is a Querydsl query type for EntitlementProperty
 */
@Generated("com.querydsl.codegen.DefaultEntitySerializer")
public class QEntitlementProperty extends EntityPathBase {

    private static final long serialVersionUID = 1084482774L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QEntitlementProperty entitlementProperty = new QEntitlementProperty("entitlementProperty");

    public final be.personify.iam.model.util.QPersisted _super = new be.personify.iam.model.util.QPersisted(this);

    public final StringPath componentRendererClass = createString("componentRendererClass");

    //inherited
    public final StringPath createdBy = _super.createdBy;

    //inherited
    public final DateTimePath creationDate = _super.creationDate;

    public final StringPath description = createString("description");

    public final QEntitlement entitlement;

    public final NumberPath id = createNumber("id", Long.class);

    public final NumberPath maxSelected = createNumber("maxSelected", Integer.class);

    public final NumberPath minSelected = createNumber("minSelected", Integer.class);

    //inherited
    public final DateTimePath modificationDate = _super.modificationDate;

    //inherited
    public final StringPath modifiedBy = _super.modifiedBy;

    public final BooleanPath multiValued = createBoolean("multiValued");

    public final StringPath name = createString("name");

    public final QPropertyProvider propertyProvider;

    public final BooleanPath visible = createBoolean("visible");

    public QEntitlementProperty(String variable) {
        this(EntitlementProperty.class, forVariable(variable), INITS);
    }

    public QEntitlementProperty(Path path) {
        this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
    }

    public QEntitlementProperty(PathMetadata metadata) {
        this(metadata, PathInits.getFor(metadata, INITS));
    }

    public QEntitlementProperty(PathMetadata metadata, PathInits inits) {
        this(EntitlementProperty.class, metadata, inits);
    }

    public QEntitlementProperty(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this.entitlement = inits.isInitialized("entitlement") ? new QEntitlement(forProperty("entitlement"), inits.get("entitlement")) : null;
        this.propertyProvider = inits.isInitialized("propertyProvider") ? new QPropertyProvider(forProperty("propertyProvider")) : null;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy