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

com.netgrif.application.engine.ldap.domain.QLdapGroup Maven / Gradle / Ivy

package com.netgrif.application.engine.ldap.domain;

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;


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

    private static final long serialVersionUID = -22704867L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QLdapGroup ldapGroup = new QLdapGroup("ldapGroup");

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

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

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

    public final org.bson.types.QObjectId id;

    public final SetPath processesRoles = this.createSet("processesRoles", com.netgrif.application.engine.petrinet.domain.roles.ProcessRole.class, com.netgrif.application.engine.petrinet.domain.roles.QProcessRole.class, PathInits.DIRECT2);

    public QLdapGroup(String variable) {
        this(LdapGroup.class, forVariable(variable), INITS);
    }

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

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

    public QLdapGroup(PathMetadata metadata, PathInits inits) {
        this(LdapGroup.class, metadata, inits);
    }

    public QLdapGroup(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this.id = inits.isInitialized("id") ? new org.bson.types.QObjectId(forProperty("id")) : null;
    }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy