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

com.netgrif.application.engine.auth.domain.QAuthority Maven / Gradle / Ivy

Go to download

System provides workflow management functions including user, role and data management.

There is a newer version: 6.3.3
Show newest version
package com.netgrif.application.engine.auth.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;


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

    private static final long serialVersionUID = 1569642855L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QAuthority authority1 = new QAuthority("authority1");

    public final org.bson.types.QObjectId _id;

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

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

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

    public final SetPath users = this.createSet("users", String.class, StringPath.class, PathInits.DIRECT2);

    public QAuthority(String variable) {
        this(Authority.class, forVariable(variable), INITS);
    }

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

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

    public QAuthority(PathMetadata metadata, PathInits inits) {
        this(Authority.class, metadata, inits);
    }

    public QAuthority(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