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

be.personify.iam.model.vault.QNotification 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;


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

    private static final long serialVersionUID = 1604171959L;

    private static final PathInits INITS = PathInits.DIRECT2;

    public static final QNotification notification = new QNotification("notification");

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

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

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

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

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

    public final QIdentity identity;

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

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

    public final QNotificationGroup notificationGroup;

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

    public final EnumPath notificationSentStatus = createEnum("notificationSentStatus", NotificationSentStatus.class);

    public final EnumPath notificationType = createEnum("notificationType", NotificationType.class);

    public final DateTimePath sendDate = createDateTime("sendDate", java.util.Date.class);

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

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

    public QNotification(String variable) {
        this(Notification.class, forVariable(variable), INITS);
    }

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

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

    public QNotification(PathMetadata metadata, PathInits inits) {
        this(Notification.class, metadata, inits);
    }

    public QNotification(Class type, PathMetadata metadata, PathInits inits) {
        super(type, metadata, inits);
        this.identity = inits.isInitialized("identity") ? new QIdentity(forProperty("identity"), inits.get("identity")) : null;
        this.notificationGroup = inits.isInitialized("notificationGroup") ? new QNotificationGroup(forProperty("notificationGroup")) : null;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy